Revert r4322 "Support sending multiple report blocks and keeping track of statistics on
several SSRCs" R=pwestin@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1774006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4344 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -282,7 +282,7 @@ bool RtpReceiverImpl::IncomingRtpPacket(
|
||||
return false;
|
||||
}
|
||||
if (should_reset_statistics) {
|
||||
cb_rtp_feedback_->OnResetStatistics(ssrc_);
|
||||
cb_rtp_feedback_->OnResetStatistics();
|
||||
}
|
||||
WebRtcRTPHeader webrtc_rtp_header;
|
||||
memset(&webrtc_rtp_header, 0, sizeof(webrtc_rtp_header));
|
||||
@ -413,7 +413,7 @@ void RtpReceiverImpl::CheckSSRCChanged(const RTPHeader* rtp_header) {
|
||||
// We need the payload_type_ to make the call if the remote SSRC is 0.
|
||||
new_ssrc = true;
|
||||
|
||||
cb_rtp_feedback_->OnResetStatistics(ssrc_);
|
||||
cb_rtp_feedback_->OnResetStatistics();
|
||||
|
||||
last_received_timestamp_ = 0;
|
||||
last_received_sequence_number_ = 0;
|
||||
|
||||
Reference in New Issue
Block a user