| 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 f2972e712c9072ca02d93f6ca495e422b747dca1..085dd619ceabb50667888007f25b3f2cd70db43a 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 AudioDecoder;
|
| +class AudioEncoder;
|
| class AudioFrame;
|
| +class RtcEventLog;
|
| class RTPFragmentationHeader;
|
| -class AudioEncoder;
|
| -class AudioDecoder;
|
|
|
| #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;
|
| };
|
|
|
| ///////////////////////////////////////////////////////////////////////////
|
|
|