From b7a171825bf896ccd2a5cf11a5733e97709f8ca3 Mon Sep 17 00:00:00 2001 From: "fischman@webrtc.org" Date: Mon, 28 Oct 2013 17:36:59 +0000 Subject: [PATCH] Drop ViEDecoderObserver::DecoderTiming impl now that WebRtcDecoderObserver rolled in r5038. R=wu@webrtc.org Review URL: https://webrtc-codereview.appspot.com/3009004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5044 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/video_engine/include/vie_codec.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/webrtc/video_engine/include/vie_codec.h b/webrtc/video_engine/include/vie_codec.h index 023a36d068..f47043851b 100644 --- a/webrtc/video_engine/include/vie_codec.h +++ b/webrtc/video_engine/include/vie_codec.h @@ -64,15 +64,13 @@ class WEBRTC_DLLEXPORT ViEDecoderObserver { // Called periodically with decoder timing information. All values are // "current" snapshots unless decorated with a min_/max_ prefix. - // TODO(fischman): drop the do-nothing default impl. when - // WebRtcDecoderObserver is updated. virtual void DecoderTiming(int decode_ms, int max_decode_ms, int current_delay_ms, int target_delay_ms, int jitter_buffer_ms, int min_playout_delay_ms, - int render_delay_ms) {} + int render_delay_ms) = 0; // This method is called when the decoder needs a new key frame from encoder // on the sender.