Update talk to 50918584.
Together with Stefan's http://review.webrtc.org/1960004/. R=mallinath@webrtc.org Review URL: https://webrtc-codereview.appspot.com/2048004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4556 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -17,8 +17,6 @@
|
||||
#include "webrtc/modules/rtp_rtcp/interface/rtp_rtcp.h"
|
||||
#include "webrtc/modules/rtp_rtcp/source/rtcp_receiver.h"
|
||||
#include "webrtc/modules/rtp_rtcp/source/rtcp_sender.h"
|
||||
#include "webrtc/modules/rtp_rtcp/source/rtp_payload_registry.h"
|
||||
#include "webrtc/modules/rtp_rtcp/source/rtp_receiver.h"
|
||||
#include "webrtc/modules/rtp_rtcp/source/rtp_sender.h"
|
||||
#include "webrtc/system_wrappers/interface/scoped_ptr.h"
|
||||
|
||||
@ -43,72 +41,12 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
|
||||
// Receiver part.
|
||||
|
||||
// Configure a timeout value.
|
||||
virtual int32_t SetPacketTimeout(const uint32_t rtp_timeout_ms,
|
||||
const uint32_t rtcp_timeout_ms) OVERRIDE;
|
||||
|
||||
// Set periodic dead or alive notification.
|
||||
virtual int32_t SetPeriodicDeadOrAliveStatus(
|
||||
const bool enable,
|
||||
const uint8_t sample_time_seconds) OVERRIDE;
|
||||
|
||||
// Get periodic dead or alive notification status.
|
||||
virtual int32_t PeriodicDeadOrAliveStatus(
|
||||
bool& enable,
|
||||
uint8_t& sample_time_seconds) OVERRIDE;
|
||||
|
||||
virtual int32_t RegisterReceivePayload(const CodecInst& voice_codec) OVERRIDE;
|
||||
|
||||
virtual int32_t RegisterReceivePayload(
|
||||
const VideoCodec& video_codec) OVERRIDE;
|
||||
|
||||
virtual int32_t ReceivePayloadType(const CodecInst& voice_codec,
|
||||
int8_t* pl_type) OVERRIDE;
|
||||
|
||||
virtual int32_t ReceivePayloadType(const VideoCodec& video_codec,
|
||||
int8_t* pl_type) OVERRIDE;
|
||||
|
||||
virtual int32_t DeRegisterReceivePayload(const int8_t payload_type) OVERRIDE;
|
||||
|
||||
// Get the currently configured SSRC filter.
|
||||
virtual int32_t SSRCFilter(uint32_t& allowed_ssrc) const OVERRIDE;
|
||||
|
||||
// Set a SSRC to be used as a filter for incoming RTP streams.
|
||||
virtual int32_t SetSSRCFilter(const bool enable,
|
||||
const uint32_t allowed_ssrc) OVERRIDE;
|
||||
|
||||
// Get last received remote timestamp.
|
||||
virtual uint32_t RemoteTimestamp() const OVERRIDE;
|
||||
|
||||
// Get the local time of the last received remote timestamp.
|
||||
virtual int64_t LocalTimeOfRemoteTimeStamp() const OVERRIDE;
|
||||
|
||||
// Get the current estimated remote timestamp.
|
||||
virtual int32_t EstimatedRemoteTimeStamp(uint32_t& timestamp) const OVERRIDE;
|
||||
|
||||
virtual uint32_t RemoteSSRC() const OVERRIDE;
|
||||
|
||||
virtual int32_t RemoteCSRCs(uint32_t arr_of_csrc[kRtpCsrcSize]) const
|
||||
OVERRIDE;
|
||||
|
||||
virtual int32_t SetRTXReceiveStatus(const bool enable,
|
||||
const uint32_t ssrc) OVERRIDE;
|
||||
|
||||
virtual int32_t RTXReceiveStatus(bool* enable, uint32_t* ssrc,
|
||||
int* payloadType) const OVERRIDE;
|
||||
|
||||
virtual void SetRtxReceivePayloadType(int payload_type) OVERRIDE;
|
||||
|
||||
// Called when we receive an RTP packet.
|
||||
virtual int32_t IncomingRtpPacket(
|
||||
const uint8_t* incoming_packet,
|
||||
const uint16_t packet_length,
|
||||
const RTPHeader& parsed_rtp_header) OVERRIDE;
|
||||
|
||||
// Called when we receive an RTCP packet.
|
||||
virtual int32_t IncomingRtcpPacket(const uint8_t* incoming_packet,
|
||||
uint16_t incoming_packet_length) OVERRIDE;
|
||||
|
||||
virtual void SetRemoteSSRC(const uint32_t ssrc);
|
||||
|
||||
// Sender part.
|
||||
|
||||
virtual int32_t RegisterSendPayload(const CodecInst& voice_codec) OVERRIDE;
|
||||
@ -239,32 +177,11 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
// Normal SR and RR are triggered via the process function.
|
||||
virtual int32_t SendRTCP(uint32_t rtcp_packet_type = kRtcpReport) OVERRIDE;
|
||||
|
||||
// Statistics of our locally created statistics of the received RTP stream.
|
||||
virtual int32_t StatisticsRTP(uint8_t* fraction_lost,
|
||||
uint32_t* cum_lost,
|
||||
uint32_t* ext_max,
|
||||
uint32_t* jitter,
|
||||
uint32_t* max_jitter = NULL) const OVERRIDE;
|
||||
|
||||
// Reset RTP statistics.
|
||||
virtual int32_t ResetStatisticsRTP() OVERRIDE;
|
||||
|
||||
virtual int32_t ResetReceiveDataCountersRTP() OVERRIDE;
|
||||
|
||||
virtual int32_t ResetSendDataCountersRTP() OVERRIDE;
|
||||
|
||||
// Statistics of the amount of data sent and received.
|
||||
virtual int32_t DataCountersRTP(uint32_t* bytes_sent,
|
||||
uint32_t* packets_sent,
|
||||
uint32_t* bytes_received,
|
||||
uint32_t* packets_received) const OVERRIDE;
|
||||
|
||||
virtual int32_t ReportBlockStatistics(
|
||||
uint8_t* fraction_lost,
|
||||
uint32_t* cum_lost,
|
||||
uint32_t* ext_max,
|
||||
uint32_t* jitter,
|
||||
uint32_t* jitter_transmission_time_offset);
|
||||
uint32_t* packets_sent) const OVERRIDE;
|
||||
|
||||
// Get received RTCP report, sender info.
|
||||
virtual int32_t RemoteRTCPStat(RTCPSenderInfo* sender_info) OVERRIDE;
|
||||
@ -313,13 +230,6 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
|
||||
// (NACK) Negative acknowledgment part.
|
||||
|
||||
// Is Negative acknowledgment requests on/off?
|
||||
virtual NACKMethod NACK() const OVERRIDE;
|
||||
|
||||
// Turn negative acknowledgment requests on/off.
|
||||
virtual int32_t SetNACKStatus(const NACKMethod method,
|
||||
int max_reordering_threshold) OVERRIDE;
|
||||
|
||||
virtual int SelectiveRetransmissions() const OVERRIDE;
|
||||
|
||||
virtual int SetSelectiveRetransmissions(uint8_t settings) OVERRIDE;
|
||||
@ -333,6 +243,8 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
virtual int32_t SetStorePacketsStatus(
|
||||
const bool enable, const uint16_t number_to_store) OVERRIDE;
|
||||
|
||||
virtual bool StorePackets() const OVERRIDE;
|
||||
|
||||
// (APP) Application specific data.
|
||||
virtual int32_t SetRTCPApplicationSpecificData(
|
||||
const uint8_t sub_type,
|
||||
@ -350,13 +262,6 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
virtual int32_t SetAudioPacketSize(
|
||||
const uint16_t packet_size_samples) OVERRIDE;
|
||||
|
||||
// Forward DTMFs to decoder for playout.
|
||||
virtual int SetTelephoneEventForwardToDecoder(
|
||||
bool forward_to_decoder) OVERRIDE;
|
||||
|
||||
// Is forwarding of outband telephone events turned on/off?
|
||||
virtual bool TelephoneEventForwardToDecoder() const OVERRIDE;
|
||||
|
||||
virtual bool SendTelephoneEventActive(int8_t& telephone_event) const OVERRIDE;
|
||||
|
||||
// Send a TelephoneEvent tone using RFC 2833 (4733).
|
||||
@ -384,8 +289,6 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
|
||||
// Video part.
|
||||
|
||||
virtual RtpVideoCodecTypes ReceivedVideoCodec() const;
|
||||
|
||||
virtual RtpVideoCodecTypes SendVideoCodec() const;
|
||||
|
||||
virtual int32_t SendRTCPSliceLossIndication(
|
||||
@ -427,8 +330,6 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
uint32_t* fec_rate,
|
||||
uint32_t* nackRate) const OVERRIDE;
|
||||
|
||||
virtual void SetRemoteSSRC(const uint32_t ssrc);
|
||||
|
||||
virtual uint32_t SendTimeOfSendReport(const uint32_t send_report);
|
||||
|
||||
// Good state of RTP receiver inform sender.
|
||||
@ -458,8 +359,6 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
|
||||
bool UpdateRTCPReceiveInformationTimers();
|
||||
|
||||
void ProcessDeadOrAliveTimer();
|
||||
|
||||
uint32_t BitrateReceivedNow() const;
|
||||
|
||||
// Get remote SequenceNumber.
|
||||
@ -468,10 +367,7 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
// Only for internal testing.
|
||||
uint32_t LastSendReport(uint32_t& last_rtcptime);
|
||||
|
||||
RTPPayloadRegistry rtp_payload_registry_;
|
||||
|
||||
RTPSender rtp_sender_;
|
||||
scoped_ptr<RTPReceiver> rtp_receiver_;
|
||||
|
||||
RTCPSender rtcp_sender_;
|
||||
RTCPReceiver rtcp_receiver_;
|
||||
@ -481,14 +377,13 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
private:
|
||||
int64_t RtcpReportInterval();
|
||||
|
||||
RTPReceiverAudio* rtp_telephone_event_handler_;
|
||||
ReceiveStatistics* receive_statistics_;
|
||||
|
||||
int32_t id_;
|
||||
const bool audio_;
|
||||
bool collision_detected_;
|
||||
int64_t last_process_time_;
|
||||
int64_t last_bitrate_process_time_;
|
||||
int64_t last_packet_timeout_process_time_;
|
||||
int64_t last_rtt_process_time_;
|
||||
uint16_t packet_overhead_;
|
||||
|
||||
@ -497,10 +392,6 @@ class ModuleRtpRtcpImpl : public RtpRtcp {
|
||||
ModuleRtpRtcpImpl* default_module_;
|
||||
std::list<ModuleRtpRtcpImpl*> child_modules_;
|
||||
|
||||
// Dead or alive.
|
||||
bool dead_or_alive_active_;
|
||||
uint32_t dead_or_alive_timeout_ms_;
|
||||
int64_t dead_or_alive_last_timer_;
|
||||
// Send side
|
||||
NACKMethod nack_method_;
|
||||
uint32_t nack_last_time_sent_full_;
|
||||
|
||||
Reference in New Issue
Block a user