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
This commit is contained in:
fischman@webrtc.org 2013-10-28 17:36:59 +00:00
parent 16e03b7bd8
commit b7a171825b

View File

@ -64,15 +64,13 @@ class WEBRTC_DLLEXPORT ViEDecoderObserver {
// Called periodically with decoder timing information. All values are // Called periodically with decoder timing information. All values are
// "current" snapshots unless decorated with a min_/max_ prefix. // "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, virtual void DecoderTiming(int decode_ms,
int max_decode_ms, int max_decode_ms,
int current_delay_ms, int current_delay_ms,
int target_delay_ms, int target_delay_ms,
int jitter_buffer_ms, int jitter_buffer_ms,
int min_playout_delay_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 // This method is called when the decoder needs a new key frame from encoder
// on the sender. // on the sender.