Remove const in vie_rtp_rtcp, where there is conflict with

mock defines in fakewebrtcvideoengine.

BUG=
R=mflodman@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/4399004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@5176 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
sprang@webrtc.org
2013-11-26 09:30:04 +00:00
parent d89b52af80
commit 7f959980f8

View File

@ -314,16 +314,16 @@ class WEBRTC_DLLEXPORT ViERTP_RTCP {
virtual int RegisterSendChannelRtcpStatisticsCallback( virtual int RegisterSendChannelRtcpStatisticsCallback(
const int video_channel, RtcpStatisticsCallback* callback) = 0; int video_channel, RtcpStatisticsCallback* callback) = 0;
virtual int DeregisterSendChannelRtcpStatisticsCallback( virtual int DeregisterSendChannelRtcpStatisticsCallback(
const int video_channel, RtcpStatisticsCallback* callback) = 0; int video_channel, RtcpStatisticsCallback* callback) = 0;
virtual int RegisterReceiveChannelRtcpStatisticsCallback( virtual int RegisterReceiveChannelRtcpStatisticsCallback(
const int video_channel, RtcpStatisticsCallback* callback) = 0; int video_channel, RtcpStatisticsCallback* callback) = 0;
virtual int DeregisterReceiveChannelRtcpStatisticsCallback( virtual int DeregisterReceiveChannelRtcpStatisticsCallback(
const int video_channel, RtcpStatisticsCallback* callback) = 0; int video_channel, RtcpStatisticsCallback* callback) = 0;
// The function gets statistics from the sent and received RTP streams. // The function gets statistics from the sent and received RTP streams.
virtual int GetRtpStatistics(const int video_channel, virtual int GetRtpStatistics(const int video_channel,
@ -348,16 +348,16 @@ class WEBRTC_DLLEXPORT ViERTP_RTCP {
} }
virtual int RegisterSendChannelRtpStatisticsCallback( virtual int RegisterSendChannelRtpStatisticsCallback(
const int video_channel, StreamDataCountersCallback* callback) = 0; int video_channel, StreamDataCountersCallback* callback) = 0;
virtual int DeregisterSendChannelRtpStatisticsCallback( virtual int DeregisterSendChannelRtpStatisticsCallback(
const int video_channel, StreamDataCountersCallback* callback) = 0; int video_channel, StreamDataCountersCallback* callback) = 0;
virtual int RegisterReceiveChannelRtpStatisticsCallback( virtual int RegisterReceiveChannelRtpStatisticsCallback(
const int video_channel, StreamDataCountersCallback* callback) = 0; int video_channel, StreamDataCountersCallback* callback) = 0;
virtual int DeregisterReceiveChannelRtpStatisticsCallback( virtual int DeregisterReceiveChannelRtpStatisticsCallback(
const int video_channel, StreamDataCountersCallback* callback) = 0; int video_channel, StreamDataCountersCallback* callback) = 0;
// The function gets bandwidth usage statistics from the sent RTP streams in // The function gets bandwidth usage statistics from the sent RTP streams in
// bits/s. // bits/s.
@ -369,11 +369,11 @@ class WEBRTC_DLLEXPORT ViERTP_RTCP {
// (De)Register an observer, called whenever the send bitrate is updated // (De)Register an observer, called whenever the send bitrate is updated
virtual int RegisterSendBitrateObserver( virtual int RegisterSendBitrateObserver(
const int video_channel, int video_channel,
BitrateStatisticsObserver* observer) = 0; BitrateStatisticsObserver* observer) = 0;
virtual int DeregisterSendBitrateObserver( virtual int DeregisterSendBitrateObserver(
const int video_channel, int video_channel,
BitrateStatisticsObserver* observer) = 0; BitrateStatisticsObserver* observer) = 0;
// This function gets the send-side estimated bandwidth available for video, // This function gets the send-side estimated bandwidth available for video,
@ -418,11 +418,11 @@ class WEBRTC_DLLEXPORT ViERTP_RTCP {
// Registers and instance of a user implementation of ViEFrameCountObserver // Registers and instance of a user implementation of ViEFrameCountObserver
virtual int RegisterSendFrameCountObserver( virtual int RegisterSendFrameCountObserver(
const int video_channel, FrameCountObserver* observer) = 0; int video_channel, FrameCountObserver* observer) = 0;
// Removes a registered instance of a ViEFrameCountObserver // Removes a registered instance of a ViEFrameCountObserver
virtual int DeregisterSendFrameCountObserver( virtual int DeregisterSendFrameCountObserver(
const int video_channel, FrameCountObserver* observer) = 0; int video_channel, FrameCountObserver* observer) = 0;
protected: protected:
virtual ~ViERTP_RTCP() {} virtual ~ViERTP_RTCP() {}