| 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 3e3123c98ceb90013d38e555a1170bb16aa6f5da..8f81c0fdd0572bc672cc5db2637fed31d68ae9a4 100644
|
| --- a/media/base/android/video_decoder_job.cc
|
| +++ b/media/base/android/video_decoder_job.cc
|
| @@ -83,9 +83,10 @@ void VideoDecoderJob::ReleaseOutputBuffer(
|
| bool render_output,
|
| bool is_late_frame,
|
| base::TimeDelta current_presentation_timestamp,
|
| - const ReleaseOutputCompletionCallback& callback) {
|
| + MediaCodecStatus status,
|
| + const DecoderCallback& callback) {
|
| media_codec_bridge_->ReleaseOutputBuffer(output_buffer_index, render_output);
|
| - callback.Run(is_late_frame, current_presentation_timestamp,
|
| + callback.Run(status, is_late_frame, current_presentation_timestamp,
|
| current_presentation_timestamp);
|
| }
|
|
|
|
|