| Index: webrtc/modules/audio_coding/main/interface/audio_coding_module.h
|
| diff --git a/webrtc/modules/audio_coding/main/interface/audio_coding_module.h b/webrtc/modules/audio_coding/main/interface/audio_coding_module.h
|
| index 387632e0f44b1b8dba37eb8ae8428bb5c2ba3bfb..e19c3ddd346edd7860406e91aed684d20d585eab 100644
|
| --- a/webrtc/modules/audio_coding/main/interface/audio_coding_module.h
|
| +++ b/webrtc/modules/audio_coding/main/interface/audio_coding_module.h
|
| @@ -26,10 +26,11 @@ namespace webrtc {
|
| // forward declarations
|
| struct CodecInst;
|
| struct WebRtcRTPHeader;
|
| -class AudioFrame;
|
| -class RTPFragmentationHeader;
|
| class AudioEncoderMutable;
|
| class AudioDecoder;
|
| +class AudioFrame;
|
| +class RtcEventLog;
|
| +class RTPFragmentationHeader;
|
|
|
| #define WEBRTC_10MS_PCM_AUDIO 960 // 16 bits super wideband 48 kHz
|
|
|
| @@ -85,11 +86,13 @@ class AudioCodingModule {
|
| Config()
|
| : id(0),
|
| neteq_config(),
|
| - clock(Clock::GetRealTimeClock()) {}
|
| + clock(Clock::GetRealTimeClock()),
|
| + event_log(nullptr) {}
|
|
|
| int id;
|
| NetEq::Config neteq_config;
|
| Clock* clock;
|
| + RtcEventLog* event_log;
|
| };
|
|
|
| ///////////////////////////////////////////////////////////////////////////
|
|
|