From 70df305760dd9cb947c4a86a0e5e97633da0c1ee Mon Sep 17 00:00:00 2001 From: "henrik.lundin@webrtc.org" Date: Thu, 3 Oct 2013 13:38:59 +0000 Subject: [PATCH] Minor fix to avoid breakage Related to AutoMute feature. Fixed a lint nit, too. TBR=mflodman@webrtc.org BUG=2436 Review URL: https://webrtc-codereview.appspot.com/2347004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4910 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/video_engine/include/vie_codec.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webrtc/video_engine/include/vie_codec.h b/webrtc/video_engine/include/vie_codec.h index 017bedf188..976aee7d20 100644 --- a/webrtc/video_engine/include/vie_codec.h +++ b/webrtc/video_engine/include/vie_codec.h @@ -39,7 +39,7 @@ class WEBRTC_DLLEXPORT ViEEncoderObserver { // This method is called whenever the state of the AutoMuter changes, i.e., // when |is_muted| toggles. // TODO(hlundin): Remove the default implementation when possible. - virtual void VideoAutoMuted(bool is_muted) {}; + virtual void VideoAutoMuted(bool is_muted) {} protected: virtual ~ViEEncoderObserver() {} @@ -187,8 +187,9 @@ class WEBRTC_DLLEXPORT ViECodec { // |threshold_bps|, and turns back on when the rate goes back up above // |threshold_bps| + |window_bps|. // This is under development; not tested. + // TODO(hlundin): Remove the default implementation when possible. virtual void EnableAutoMuting(int video_channel, int threshold_bps, - int window_bps) = 0; + int window_bps) {} protected: ViECodec() {}