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..553d8ad4b8cd5d5db1206540d058a4b1bf650d0a 100644 |
--- a/webrtc/modules/audio_coding/codecs/audio_encoder_mutable_impl.h |
+++ b/webrtc/modules/audio_coding/codecs/audio_encoder_mutable_impl.h |
@@ -82,6 +82,10 @@ class AudioEncoderMutableImpl : public P { |
CriticalSectionScoped cs(encoder_lock_.get()); |
return encoder_->Max10MsFramesInAPacket(); |
} |
+ int GetTargetBitrate() const override { |
+ CriticalSectionScoped cs(encoder_lock_.get()); |
+ return encoder_->GetTargetBitrate(); |
+ } |
void SetTargetBitrate(int bits_per_second) override { |
CriticalSectionScoped cs(encoder_lock_.get()); |
encoder_->SetTargetBitrate(bits_per_second); |