summaryrefslogtreecommitdiff
path: root/modules/rtp_rtcp/interface
diff options
context:
space:
mode:
authorandresp@webrtc.org <andresp@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-07-10 09:39:23 +0000
committerandresp@webrtc.org <andresp@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-07-10 09:39:23 +0000
commit8c95e83545433c8cd6f670ea6fe3e84293af3737 (patch)
treebcae22424180d74c1e6baa6835f81a5154acc926 /modules/rtp_rtcp/interface
parentf8bddb4a17217a4cd8e92e4b322ee8df3327e1c6 (diff)
downloadwebrtc-8c95e83545433c8cd6f670ea6fe3e84293af3737.tar.gz
Refactor registerable callbacks for FrameCountObserver from rtp_rtcp module into vie_channel.
R=stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/16839004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6649 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'modules/rtp_rtcp/interface')
-rw-r--r--modules/rtp_rtcp/interface/rtp_rtcp.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/rtp_rtcp/interface/rtp_rtcp.h b/modules/rtp_rtcp/interface/rtp_rtcp.h
index 235ca849..34f4d3f1 100644
--- a/modules/rtp_rtcp/interface/rtp_rtcp.h
+++ b/modules/rtp_rtcp/interface/rtp_rtcp.h
@@ -68,6 +68,7 @@ class RtpRtcp : public Module {
RemoteBitrateEstimator* remote_bitrate_estimator;
PacedSender* paced_sender;
BitrateStatisticsObserver* send_bitrate_observer;
+ FrameCountObserver* send_frame_count_observer;
};
/*
@@ -340,10 +341,6 @@ class RtpRtcp : public Module {
virtual int TimeToSendPadding(int bytes) = 0;
- virtual void RegisterSendFrameCountObserver(
- FrameCountObserver* observer) = 0;
- virtual FrameCountObserver* GetSendFrameCountObserver() const = 0;
-
virtual bool GetSendSideDelay(int* avg_send_delay_ms,
int* max_send_delay_ms) const = 0;