| Index: webrtc/modules/audio_coding/main/acm2/codec_owner.h
|
| diff --git a/webrtc/modules/audio_coding/main/acm2/codec_owner.h b/webrtc/modules/audio_coding/main/acm2/codec_owner.h
|
| index 2468c3ce00ebd2baf362e9db167c2929bd6060a3..909d93f0ea0f87bb6c8d93788c792c781dc50f7b 100644
|
| --- a/webrtc/modules/audio_coding/main/acm2/codec_owner.h
|
| +++ b/webrtc/modules/audio_coding/main/acm2/codec_owner.h
|
| @@ -24,9 +24,11 @@ class AudioDecoder;
|
|
|
| namespace acm2 {
|
|
|
| +class DelayedLogger;
|
| +
|
| class CodecOwner {
|
| public:
|
| - CodecOwner();
|
| + CodecOwner(DelayedLogger* bitrate_logger);
|
| ~CodecOwner();
|
|
|
| void SetEncoders(const CodecInst& speech_inst,
|
| @@ -73,6 +75,8 @@ class CodecOwner {
|
| rtc::scoped_ptr<AudioEncoder> cng_encoder_;
|
| rtc::scoped_ptr<AudioEncoder> red_encoder_;
|
|
|
| + DelayedLogger* const bitrate_logger_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(CodecOwner);
|
| };
|
|
|
|
|