| Index: media/filters/video_renderer_base.h
|
| diff --git a/media/filters/video_renderer_base.h b/media/filters/video_renderer_base.h
|
| index 2746ccb98da0e155383670477fbed0cbc380a0c2..b42b8d94ed5a89884843a5fcac3547845d5aed18 100644
|
| --- a/media/filters/video_renderer_base.h
|
| +++ b/media/filters/video_renderer_base.h
|
| @@ -74,8 +74,9 @@ class MEDIA_EXPORT VideoRendererBase
|
| void PutCurrentFrame(scoped_refptr<VideoFrame> frame);
|
|
|
| private:
|
| - // Callback from the video decoder delivering decoded video frames.
|
| - void FrameReady(scoped_refptr<VideoFrame> frame);
|
| + // Callback from the video decoder delivering decoded video frames and
|
| + // reporting video decoder status.
|
| + void FrameReady(VideoDecoder::Status status, scoped_refptr<VideoFrame> frame);
|
|
|
| // Helper method that schedules an asynchronous read from the decoder as long
|
| // as there isn't a pending read and we have capacity.
|
|
|