Index: webrtc/voice_engine/channel.cc |
diff --git a/webrtc/voice_engine/channel.cc b/webrtc/voice_engine/channel.cc |
index 68f2e2d95c34e2ece65ed4008c57b716994e3a91..1d39645d477f38e64aad473e01feefb2bc66e0a8 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; |