| Index: webrtc/voice_engine/channel_proxy.cc
|
| diff --git a/webrtc/voice_engine/channel_proxy.cc b/webrtc/voice_engine/channel_proxy.cc
|
| index 4cc7f5cbbcdc61cd3f0c68481006ebb88703b4c4..ab73d4d5bae7e95a81278d7479f1bdbc30d39149 100644
|
| --- a/webrtc/voice_engine/channel_proxy.cc
|
| +++ b/webrtc/voice_engine/channel_proxy.cc
|
| @@ -181,6 +181,11 @@ bool ChannelProxy::ReceivedRTCPPacket(const uint8_t* packet, size_t length) {
|
| return channel()->ReceivedRTCPPacket(packet, length) == 0;
|
| }
|
|
|
| +const std::shared_ptr<AudioDecoderFactory>&
|
| +ChannelProxy::GetAudioDecoderFactory() const {
|
| + return channel()->GetAudioDecoderFactory();
|
| +}
|
| +
|
| Channel* ChannelProxy::channel() const {
|
| RTC_DCHECK(channel_owner_.channel());
|
| return channel_owner_.channel();
|
|
|