| Index: webrtc/voice_engine/channel_proxy.cc
|
| diff --git a/webrtc/voice_engine/channel_proxy.cc b/webrtc/voice_engine/channel_proxy.cc
|
| index bb56b078d193aedb8859e2bda89d487fc972cbe1..ac96fe98d38e738480c21252ea33e70cc5c05f34 100644
|
| --- a/webrtc/voice_engine/channel_proxy.cc
|
| +++ b/webrtc/voice_engine/channel_proxy.cc
|
| @@ -30,6 +30,12 @@ ChannelProxy::ChannelProxy(const ChannelOwner& channel_owner) :
|
|
|
| ChannelProxy::~ChannelProxy() {}
|
|
|
| +bool ChannelProxy::SetEncoder(int payload_type,
|
| + std::unique_ptr<AudioEncoder> encoder) {
|
| + RTC_DCHECK(worker_thread_checker_.CalledOnValidThread());
|
| + return channel()->SetEncoder(payload_type, std::move(encoder));
|
| +}
|
| +
|
| void ChannelProxy::SetRTCPStatus(bool enable) {
|
| RTC_DCHECK(worker_thread_checker_.CalledOnValidThread());
|
| channel()->SetRTCPStatus(enable);
|
|
|