| Index: media/gpu/vt_video_decode_accelerator_mac.cc
|
| diff --git a/media/gpu/vt_video_decode_accelerator_mac.cc b/media/gpu/vt_video_decode_accelerator_mac.cc
|
| index ac424e321ca6bdbb95e968f816ee2d719e24b817..fd44ba83931db5d7302a6b8199220bdd9d2e6ff6 100644
|
| --- a/media/gpu/vt_video_decode_accelerator_mac.cc
|
| +++ b/media/gpu/vt_video_decode_accelerator_mac.cc
|
| @@ -1077,8 +1077,10 @@ bool VTVideoDecodeAccelerator::SendFrame(const Frame& frame) {
|
| // GpuVideoDecoder so that GpuVideoDecoder can use correct visible size in
|
| // resolution changed. We should find the correct API to get the real
|
| // coded size and fix it.
|
| + // TODO(hubbe): Use the correct color space.
|
| client_->PictureReady(Picture(picture_id, frame.bitstream_id,
|
| - gfx::Rect(frame.coded_size), true));
|
| + gfx::Rect(frame.coded_size), gfx::ColorSpace(),
|
| + true));
|
| return true;
|
| }
|
|
|
|
|