| Index: webrtc/voice_engine/channel_proxy.h
|
| diff --git a/webrtc/voice_engine/channel_proxy.h b/webrtc/voice_engine/channel_proxy.h
|
| index 8a78069609b6588692e987634eadd20b14a1318b..fc473f2b99dc88fd9403b65682120a9e548f4f49 100644
|
| --- a/webrtc/voice_engine/channel_proxy.h
|
| +++ b/webrtc/voice_engine/channel_proxy.h
|
| @@ -29,6 +29,8 @@ class PacketRouter;
|
| class RtcEventLog;
|
| class RtcpRttStats;
|
| class RtpPacketSender;
|
| +class RtpReceiver;
|
| +class RtpRtcp;
|
| class Transport;
|
| class TransportFeedbackObserver;
|
|
|
| @@ -97,6 +99,12 @@ class ChannelProxy {
|
| virtual void SetTransportOverhead(int transport_overhead_per_packet);
|
| virtual void AssociateSendChannel(const ChannelProxy& send_channel_proxy);
|
| virtual void DisassociateSendChannel();
|
| + virtual void GetRtpRtcp(RtpRtcp** rtp_rtcp,
|
| + RtpReceiver** rtp_receiver) const;
|
| + virtual void GetDelayEstimate(int* jitter_buffer_delay_ms,
|
| + int* playout_buffer_delay_ms) const;
|
| + virtual uint32_t GetPlayoutTimestamp() const;
|
| + virtual void SetMinimumPlayoutDelay(int delay_ms);
|
|
|
| virtual void SetRtcpRttStats(RtcpRttStats* rtcp_rtt_stats);
|
|
|
|
|