Index: webrtc/voice_engine/channel_proxy.cc |
diff --git a/webrtc/voice_engine/channel_proxy.cc b/webrtc/voice_engine/channel_proxy.cc |
index d67011e680d734a6ca8d42676a7add85512a277f..45cbf10819b29829684d148cc3cd062359d2c380 100644 |
--- a/webrtc/voice_engine/channel_proxy.cc |
+++ b/webrtc/voice_engine/channel_proxy.cc |
@@ -173,12 +173,6 @@ |
RTC_DCHECK_EQ(0, result); |
} |
-void ChannelProxy::SetReceiveCodecs( |
- const std::map<int, SdpAudioFormat>& codecs) { |
- RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
- channel()->SetReceiveCodecs(codecs); |
-} |
- |
void ChannelProxy::SetSink(std::unique_ptr<AudioSinkInterface> sink) { |
RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
channel()->SetSink(std::move(sink)); |
@@ -385,11 +379,6 @@ |
channel()->OnRecoverableUplinkPacketLossRate(recoverable_packet_loss_rate); |
} |
-void ChannelProxy::RegisterLegacyCodecs() { |
- RTC_DCHECK(worker_thread_checker_.CalledOnValidThread()); |
- channel()->RegisterLegacyCodecs(); |
-} |
- |
Channel* ChannelProxy::channel() const { |
RTC_DCHECK(channel_owner_.channel()); |
return channel_owner_.channel(); |