Fix an error in Audio Network Adaptor: time constant passed wrong.

BUG=wbrtc:6303

Review-Url: https://codereview.webrtc.org/2595283003
Cr-Commit-Position: refs/heads/master@{#15767}
This commit is contained in:
minyue
2016-12-23 01:49:37 -08:00
committed by Commit bot
parent e97389c505
commit d01ed1fe8f

View File

@ -69,7 +69,7 @@ std::unique_ptr<FecController> CreateFecController(
fec_disabling_threshold.low_bandwidth_packet_loss(),
fec_disabling_threshold.high_bandwidth_bps(),
fec_disabling_threshold.high_bandwidth_packet_loss()),
config.has_time_constant_ms(), clock)));
config.time_constant_ms(), clock)));
}
std::unique_ptr<FrameLengthController> CreateFrameLengthController(