| Index: content/common/gpu/media/dxva_video_decode_accelerator_win.cc
|
| diff --git a/content/common/gpu/media/dxva_video_decode_accelerator_win.cc b/content/common/gpu/media/dxva_video_decode_accelerator_win.cc
|
| index adbc1055cecd4df580d2a8bb5ee1997b113d6b64..c619622421f2a9108224d76adf5143aac8f84e20 100644
|
| --- a/content/common/gpu/media/dxva_video_decode_accelerator_win.cc
|
| +++ b/content/common/gpu/media/dxva_video_decode_accelerator_win.cc
|
| @@ -1747,8 +1747,8 @@ void DXVAVideoDecodeAccelerator::NotifyPictureReady(
|
| if (GetState() != kUninitialized && client_) {
|
| // TODO(henryhsu): Use correct visible size instead of (0, 0). We can't use
|
| // coded size here so use (0, 0) intentionally to have the client choose.
|
| - media::Picture picture(picture_buffer_id, input_buffer_id,
|
| - gfx::Rect(0, 0), false);
|
| + media::Picture picture(picture_buffer_id, input_buffer_id, gfx::Rect(0, 0),
|
| + false, false);
|
| client_->PictureReady(picture);
|
| }
|
| }
|
|
|