aboutsummaryrefslogtreecommitdiff
path: root/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h
diff options
context:
space:
mode:
authormflodman@webrtc.org <mflodman@webrtc.org>2015-02-25 13:50:10 +0000
committermflodman@webrtc.org <mflodman@webrtc.org>2015-02-25 13:50:51 +0000
commit96abda0316312183307a0c95e9417f10eab7e05b (patch)
treeb4274e4ff5b68c326b42aba79a3e2218a66b307c /webrtc/modules/rtp_rtcp/source/rtcp_receiver.h
parent9b969e167d1f09604828981d238a8d86894b3a76 (diff)
downloadwebrtc-96abda0316312183307a0c95e9417f10eab7e05b.tar.gz
Removing FEC functionality from the default RTP module.
This CL removes the last default module methods used from ViEEncoder and the default module itself will be removed in a separate CL. BUG=769 R=stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/35309004 Cr-Commit-Position: refs/heads/master@{#8505} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8505 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'webrtc/modules/rtp_rtcp/source/rtcp_receiver.h')
-rw-r--r--webrtc/modules/rtp_rtcp/source/rtcp_receiver.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h b/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h
index 919e9669fe..2086afcae1 100644
--- a/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_receiver.h
@@ -32,6 +32,8 @@ public:
RTCPReceiver(int32_t id,
Clock* clock,
RtcpPacketTypeCounterObserver* packet_type_counter_observer,
+ RtcpBandwidthObserver* rtcp_bandwidth_observer,
+ RtcpIntraFrameObserver* rtcp_intra_frame_observer,
ModuleRtpRtcpImpl* owner);
virtual ~RTCPReceiver();
@@ -49,9 +51,6 @@ public:
uint32_t RelaySSRC() const;
- void RegisterRtcpObservers(RtcpIntraFrameObserver* intra_frame_callback,
- RtcpBandwidthObserver* bandwidth_callback);
-
int32_t IncomingRTCPPacket(
RTCPHelp::RTCPPacketInformation& rtcpPacketInformation,
RTCPUtility::RTCPParserV2 *rtcpParser);
@@ -238,8 +237,8 @@ protected:
ModuleRtpRtcpImpl& _rtpRtcp;
CriticalSectionWrapper* _criticalSectionFeedbacks;
- RtcpBandwidthObserver* _cbRtcpBandwidthObserver;
- RtcpIntraFrameObserver* _cbRtcpIntraFrameObserver;
+ RtcpBandwidthObserver* const _cbRtcpBandwidthObserver;
+ RtcpIntraFrameObserver* const _cbRtcpIntraFrameObserver;
CriticalSectionWrapper* _criticalSectionRTCPReceiver;
uint32_t main_ssrc_;