Index: webrtc/voice_engine/channel_proxy.cc |
diff --git a/webrtc/voice_engine/channel_proxy.cc b/webrtc/voice_engine/channel_proxy.cc |
index 7f6e96c97c331dd787649ad2749089fa8edf55e1..e2cc0c477a7173e058642c34ab809f6299952317 100644 |
--- a/webrtc/voice_engine/channel_proxy.cc |
+++ b/webrtc/voice_engine/channel_proxy.cc |
@@ -173,6 +173,12 @@ void ChannelProxy::SetRecPayloadType(int payload_type, |
RTC_DCHECK_EQ(0, result); |
} |
+bool ChannelProxy::SetReceiveCodecs( |
+ const std::map<int, SdpAudioFormat>& codecs) { |
+ RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
+ return channel()->SetReceiveCodecs(codecs); |
+} |
+ |
void ChannelProxy::SetSink(std::unique_ptr<AudioSinkInterface> sink) { |
RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
channel()->SetSink(std::move(sink)); |