Breaking out receive-stats, rtp-payload-registry and rtp-receiver from the
rtp_rtcp implementation. This refactoring significantly reduces the receive-side RTP parser and receiver complexity, and makes it possible to implement RTX correctly by having two instances of receive-statistics. With this change the dead-or-alive and packet timeout APIs are removed. TEST=trybots, vie_auto_test, voe_auto_test BUG=1811 R=mflodman@webrtc.org, pbos@webrtc.org, xians@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1745004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4301 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -42,6 +42,7 @@ public:
|
||||
void SetSSRC( const uint32_t ssrc);
|
||||
void SetRelaySSRC( const uint32_t ssrc);
|
||||
int32_t SetRemoteSSRC( const uint32_t ssrc);
|
||||
uint32_t RemoteSSRC() const;
|
||||
|
||||
uint32_t RelaySSRC() const;
|
||||
|
||||
@ -67,7 +68,7 @@ public:
|
||||
uint32_t *rtcp_timestamp) const;
|
||||
|
||||
// get rtt
|
||||
int32_t RTT(const uint32_t remoteSSRC,
|
||||
int32_t RTT(uint32_t remoteSSRC,
|
||||
uint16_t* RTT,
|
||||
uint16_t* avgRTT,
|
||||
uint16_t* minRTT,
|
||||
@ -106,9 +107,6 @@ public:
|
||||
|
||||
int32_t UpdateTMMBR();
|
||||
|
||||
int32_t SetPacketTimeout(const uint32_t timeoutMS);
|
||||
void PacketTimeout();
|
||||
|
||||
protected:
|
||||
RTCPHelp::RTCPReportBlockInformation* CreateReportBlockInformation(const uint32_t remoteSSRC);
|
||||
RTCPHelp::RTCPReportBlockInformation* GetReportBlockInformation(const uint32_t remoteSSRC) const;
|
||||
|
||||
Reference in New Issue
Block a user