Index: webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc |
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc b/webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc |
index 34b2ce3687f4f442787ea5c27d1ccd7ea006c86b..17a21d908e050e7c1838d01bd159a0ef4ff44acc 100644 |
--- a/webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc |
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc |
@@ -1356,6 +1356,12 @@ void RTCPReceiver::TriggerCallbacksFromRTCPPacket( |
now); |
} |
} |
+ if ((rtcpPacketInformation.rtcpPacketTypeFlags & kRtcpSr) || |
+ (rtcpPacketInformation.rtcpPacketTypeFlags & kRtcpRr)) { |
+ _rtpRtcp.OnReceivedRtcpReceiverReport( |
stefan-webrtc
2016/06/06 14:08:15
This sounds a bit wrong to me. Should it be OnRece
Irfan
2016/06/06 15:39:41
The current implementation seems to indicate the S
stefan-webrtc
2016/06/06 20:02:25
Ack, I'd prefer OnReceivedReportBlocks, especially
|
+ rtcpPacketInformation.report_blocks); |
+ } |
+ |
if (_cbTransportFeedbackObserver && |
(rtcpPacketInformation.rtcpPacketTypeFlags & kRtcpTransportFeedback)) { |
uint32_t media_source_ssrc = |