| Index: webrtc/voice_engine/channel.cc
|
| diff --git a/webrtc/voice_engine/channel.cc b/webrtc/voice_engine/channel.cc
|
| index ce9770e8a461b68fa67c61ae9e17979b8199035c..8f196c6d3148b1838ebdeb8231eed21d88bf09e1 100644
|
| --- a/webrtc/voice_engine/channel.cc
|
| +++ b/webrtc/voice_engine/channel.cc
|
| @@ -94,6 +94,22 @@ class RtcEventLogProxy final : public webrtc::RtcEventLog {
|
| }
|
| }
|
|
|
| + void LogAudioReceiveStreamConfig(
|
| + const webrtc::AudioReceiveStream::Config& config) override {
|
| + rtc::CritScope lock(&crit_);
|
| + if (event_log_) {
|
| + event_log_->LogAudioReceiveStreamConfig(config);
|
| + }
|
| + }
|
| +
|
| + void LogAudioSendStreamConfig(
|
| + const webrtc::AudioSendStream::Config& config) override {
|
| + rtc::CritScope lock(&crit_);
|
| + if (event_log_) {
|
| + event_log_->LogAudioSendStreamConfig(config);
|
| + }
|
| + }
|
| +
|
| void LogRtpHeader(webrtc::PacketDirection direction,
|
| webrtc::MediaType media_type,
|
| const uint8_t* header,
|
|
|