Index: media/gpu/android_video_decode_accelerator.cc |
diff --git a/media/gpu/android_video_decode_accelerator.cc b/media/gpu/android_video_decode_accelerator.cc |
index 06298d81bc767142eeb2dcfdd64beb80b0dab754..7228f439d16e06c9f94c2f635a7b63c69e2bda69 100644 |
--- a/media/gpu/android_video_decode_accelerator.cc |
+++ b/media/gpu/android_video_decode_accelerator.cc |
@@ -901,8 +901,9 @@ void AndroidVideoDecodeAccelerator::SendDecodedFrameToClient( |
const bool allow_overlay = picture_buffer_manager_.ArePicturesOverlayable(); |
UMA_HISTOGRAM_BOOLEAN("Media.AVDA.FrameSentAsOverlay", allow_overlay); |
+ // TODO(hubbe): Insert the correct color space. |
Pawel Osciak
2016/09/16 04:37:39
Could we perhaps include a crbug number as well pl
hubbe
2016/09/16 18:03:30
Done.
|
Picture picture(picture_buffer_id, bitstream_id, gfx::Rect(size_), |
- allow_overlay); |
+ gfx::ColorSpace(), allow_overlay); |
picture.set_size_changed(size_changed); |
// Notify picture ready before calling UseCodecBufferForPictureBuffer() since |