| Index: media/base/android/video_decoder_job.cc
|
| diff --git a/media/base/android/video_decoder_job.cc b/media/base/android/video_decoder_job.cc
|
| index 12ab4414e34f2ec1f863e1d99ed2ad2b887c8dbf..884bc6d3d0ba6247073c9adb355783cf90576a0e 100644
|
| --- a/media/base/android/video_decoder_job.cc
|
| +++ b/media/base/android/video_decoder_job.cc
|
| @@ -63,9 +63,10 @@ void VideoDecoderJob::ReleaseOutputBuffer(
|
| int output_buffer_index,
|
| size_t size,
|
| bool render_output,
|
| + base::TimeDelta current_presentation_timestamp,
|
| const ReleaseOutputCompletionCallback& callback) {
|
| video_codec_bridge_->ReleaseOutputBuffer(output_buffer_index, render_output);
|
| - callback.Run(0u);
|
| + callback.Run(current_presentation_timestamp, current_presentation_timestamp);
|
| }
|
|
|
| bool VideoDecoderJob::ComputeTimeToRender() const {
|
|
|