| Index: webrtc/audio/audio_receive_stream.cc
|
| diff --git a/webrtc/audio/audio_receive_stream.cc b/webrtc/audio/audio_receive_stream.cc
|
| index 2c58def560657ee6d64b66cb36b06df55d874aac..79e27a7b5c449997021b1f3a5e22446a22e23171 100644
|
| --- a/webrtc/audio/audio_receive_stream.cc
|
| +++ b/webrtc/audio/audio_receive_stream.cc
|
| @@ -82,7 +82,8 @@ namespace internal {
|
| AudioReceiveStream::AudioReceiveStream(
|
| CongestionController* congestion_controller,
|
| const webrtc::AudioReceiveStream::Config& config,
|
| - const rtc::scoped_refptr<webrtc::AudioState>& audio_state)
|
| + const rtc::scoped_refptr<webrtc::AudioState>& audio_state,
|
| + webrtc::RtcEventLog* event_log)
|
| : config_(config),
|
| audio_state_(audio_state),
|
| rtp_header_parser_(RtpHeaderParser::Create()) {
|
| @@ -94,6 +95,7 @@ AudioReceiveStream::AudioReceiveStream(
|
|
|
| VoiceEngineImpl* voe_impl = static_cast<VoiceEngineImpl*>(voice_engine());
|
| channel_proxy_ = voe_impl->GetChannelProxy(config_.voe_channel_id);
|
| + channel_proxy_->SetRtcEventLog(event_log);
|
| channel_proxy_->SetLocalSSRC(config.rtp.local_ssrc);
|
| for (const auto& extension : config.rtp.extensions) {
|
| if (extension.name == RtpExtension::kAudioLevel) {
|
|
|