| Index: webrtc/modules/audio_coding/codecs/audio_encoder_mutable_impl.h
|
| diff --git a/webrtc/modules/audio_coding/codecs/audio_encoder_mutable_impl.h b/webrtc/modules/audio_coding/codecs/audio_encoder_mutable_impl.h
|
| index 0bf818a0376221b92eabc1c93994bdf567a23c0f..6e2a88da7508d90776c087369b1505d6a5d9b6d3 100644
|
| --- a/webrtc/modules/audio_coding/codecs/audio_encoder_mutable_impl.h
|
| +++ b/webrtc/modules/audio_coding/codecs/audio_encoder_mutable_impl.h
|
| @@ -82,9 +82,9 @@ class AudioEncoderMutableImpl : public P {
|
| CriticalSectionScoped cs(encoder_lock_.get());
|
| return encoder_->Max10MsFramesInAPacket();
|
| }
|
| - void SetTargetBitrate(int bits_per_second) override {
|
| + int SetTargetBitrate(int bits_per_second) override {
|
| CriticalSectionScoped cs(encoder_lock_.get());
|
| - encoder_->SetTargetBitrate(bits_per_second);
|
| + return encoder_->SetTargetBitrate(bits_per_second);
|
| }
|
| void SetProjectedPacketLossRate(double fraction) override {
|
| CriticalSectionScoped cs(encoder_lock_.get());
|
|
|