Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Unified Diff: webrtc/modules/audio_coding/main/interface/audio_coding_module.h

Issue 1267683002: Hooked up RtcEventLog. It lives in Voice Engine and pointers are propagated to ACM and Call. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
};
///////////////////////////////////////////////////////////////////////////

Powered by Google App Engine
This is Rietveld 408576698