| Index: webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.cc
|
| diff --git a/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.cc b/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.cc
|
| index c662b5ba5abb5440d2219961528a39070b6ccc15..5fa44f5ce1ff4b2ce4bc0e1a5fdad0522e089d79 100644
|
| --- a/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.cc
|
| +++ b/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.cc
|
| @@ -97,8 +97,8 @@ int AudioEncoderCng::Max10MsFramesInAPacket() const {
|
| return speech_encoder_->Max10MsFramesInAPacket();
|
| }
|
|
|
| -void AudioEncoderCng::SetTargetBitrate(int bits_per_second) {
|
| - speech_encoder_->SetTargetBitrate(bits_per_second);
|
| +int AudioEncoderCng::SetTargetBitrate(int bits_per_second) {
|
| + return speech_encoder_->SetTargetBitrate(bits_per_second);
|
| }
|
|
|
| void AudioEncoderCng::SetProjectedPacketLossRate(double fraction) {
|
|
|