Index: content/common/gpu/media/dxva_video_decode_accelerator.cc |
diff --git a/content/common/gpu/media/dxva_video_decode_accelerator.cc b/content/common/gpu/media/dxva_video_decode_accelerator.cc |
index 27217e6a509ce15d0ab9efafbb3078fb4bd86fa9..974b8597b8a83d534ad42cc4a57cd0b668dc5ce6 100644 |
--- a/content/common/gpu/media/dxva_video_decode_accelerator.cc |
+++ b/content/common/gpu/media/dxva_video_decode_accelerator.cc |
@@ -1241,9 +1241,8 @@ void DXVAVideoDecodeAccelerator::NotifyPictureReady( |
DCHECK(main_thread_task_runner_->BelongsToCurrentThread()); |
// This task could execute after the decoder has been torn down. |
if (GetState() != kUninitialized && client_) { |
- media::Picture picture(picture_buffer_id, |
- input_buffer_id, |
- picture_buffer_size); |
+ media::Picture picture(picture_buffer_id, input_buffer_id, |
+ picture_buffer_size, false); |
client_->PictureReady(picture); |
} |
} |