| Index: webrtc/video/vie_channel.h
|
| diff --git a/webrtc/video/vie_channel.h b/webrtc/video/vie_channel.h
|
| index 320ce7c1fc1b1091992c1b847571bbb68a2017ee..3714c01e7a4ffd44c9569720a42fde64bc212ea9 100644
|
| --- a/webrtc/video/vie_channel.h
|
| +++ b/webrtc/video/vie_channel.h
|
| @@ -85,37 +85,18 @@ class ViEChannel : public VCMFrameTypeCallback,
|
| // type has changed and we should start a new RTP stream.
|
| int32_t SetSendCodec(const VideoCodec& video_codec, bool new_stream = true);
|
|
|
| - void SetRTCPMode(const RtcpMode rtcp_mode);
|
| void SetProtectionMode(bool enable_nack,
|
| bool enable_fec,
|
| int payload_type_red,
|
| int payload_type_fec);
|
| - bool IsSendingFecEnabled();
|
| int SetSenderBufferingMode(int target_delay_ms);
|
| int SetSendTimestampOffsetStatus(bool enable, int id);
|
| int SetSendAbsoluteSendTimeStatus(bool enable, int id);
|
| int SetSendVideoRotationStatus(bool enable, int id);
|
| int SetSendTransportSequenceNumber(bool enable, int id);
|
|
|
| - // Sets SSRC for outgoing stream.
|
| - int32_t SetSSRC(const uint32_t SSRC,
|
| - const StreamType usage,
|
| - const unsigned char simulcast_idx);
|
| -
|
| - // Gets SSRC for outgoing stream number |idx|.
|
| - int32_t GetLocalSSRC(uint8_t idx, unsigned int* ssrc);
|
| -
|
| - int SetRtxSendPayloadType(int payload_type, int associated_payload_type);
|
| -
|
| - void SetRtpStateForSsrc(uint32_t ssrc, const RtpState& rtp_state);
|
| RtpState GetRtpStateForSsrc(uint32_t ssrc) const;
|
|
|
| - // Sets the CName for the outgoing stream on the channel.
|
| - int32_t SetRTCPCName(const char* rtcp_cname);
|
| -
|
| - // Gets the CName of the incoming stream.
|
| - int32_t GetRemoteRTCPCName(char rtcp_cname[]);
|
| -
|
| // Returns statistics reported by the remote client in an RTCP packet.
|
| // TODO(pbos): Remove this along with VideoSendStream::GetRtt().
|
| int32_t GetSendRtcpStatistics(uint16_t* fraction_lost,
|
| @@ -124,10 +105,6 @@ class ViEChannel : public VCMFrameTypeCallback,
|
| uint32_t* jitter_samples,
|
| int64_t* rtt_ms) const;
|
|
|
| - // Called on receipt of RTCP report block from remote side.
|
| - void RegisterSendChannelRtcpStatisticsCallback(
|
| - RtcpStatisticsCallback* callback);
|
| -
|
| // Gets send statistics for the rtp and rtx stream.
|
| void GetSendStreamDataCounters(StreamDataCounters* rtp_counters,
|
| StreamDataCounters* rtx_counters) const;
|
| @@ -136,10 +113,6 @@ class ViEChannel : public VCMFrameTypeCallback,
|
| void GetReceiveStreamDataCounters(StreamDataCounters* rtp_counters,
|
| StreamDataCounters* rtx_counters) const;
|
|
|
| - // Called on update of RTP statistics.
|
| - void RegisterSendChannelRtpStatisticsCallback(
|
| - StreamDataCountersCallback* callback);
|
| -
|
| void GetSendRtcpPacketTypeCounter(
|
| RtcpPacketTypeCounter* packet_counter) const;
|
|
|
| @@ -163,12 +136,8 @@ class ViEChannel : public VCMFrameTypeCallback,
|
| int32_t StartSend();
|
| int32_t StopSend();
|
|
|
| - // Sets the maximum transfer unit size for the network link, i.e. including
|
| - // IP, UDP and RTP headers.
|
| - int32_t SetMTU(uint16_t mtu);
|
| -
|
| // Gets the modules used by the channel.
|
| - RtpRtcp* rtp_rtcp();
|
| + const std::vector<RtpRtcp*>& rtp_rtcp() const;
|
| ViEReceiver* vie_receiver();
|
| VCMProtectionCallback* vcm_protection_callback();
|
|
|
| @@ -258,7 +227,6 @@ class ViEChannel : public VCMFrameTypeCallback,
|
| void ProcessNACKRequest(const bool enable);
|
| // Compute NACK list parameters for the buffering mode.
|
| int GetRequiredNackListSize(int target_delay_ms);
|
| - void SetRtxSendStatus(bool enable);
|
|
|
| void UpdateHistograms();
|
|
|
|
|