Index: webrtc/voice_engine/channel.cc |
diff --git a/webrtc/voice_engine/channel.cc b/webrtc/voice_engine/channel.cc |
index c87a6852e4ca33d6ee864705f658c8c4a2479826..3fd95eee28c1c48ad63ddded342f065741990c59 100644 |
--- a/webrtc/voice_engine/channel.cc |
+++ b/webrtc/voice_engine/channel.cc |
@@ -140,6 +140,14 @@ class RtcEventLogProxy final : public webrtc::RtcEventLog { |
} |
} |
+ void LogAudioNetworkAdaptation( |
+ const AudioNetworkAdaptor::EncoderRuntimeConfig& config) override { |
+ rtc::CritScope lock(&crit_); |
+ if (event_log_) { |
+ event_log_->LogAudioNetworkAdaptation(config); |
+ } |
+ } |
+ |
void SetEventLog(RtcEventLog* event_log) { |
rtc::CritScope lock(&crit_); |
event_log_ = event_log; |