Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(984)

Unified Diff: content/common/gpu/media/gpu_video_decode_accelerator.cc

Issue 806413004: Plumb allow_overlay flag for video path into cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/gpu/media/gpu_video_decode_accelerator.cc
diff --git a/content/common/gpu/media/gpu_video_decode_accelerator.cc b/content/common/gpu/media/gpu_video_decode_accelerator.cc
index ecb0694f1a946520d56b92a77f61435ebe2465b5..104fadaa20d8145d83d31bac44023cf4ecc0570d 100644
--- a/content/common/gpu/media/gpu_video_decode_accelerator.cc
+++ b/content/common/gpu/media/gpu_video_decode_accelerator.cc
@@ -208,10 +208,9 @@ void GpuVideoDecodeAccelerator::PictureReady(
}
if (!Send(new AcceleratedVideoDecoderHostMsg_PictureReady(
- host_route_id_,
- picture.picture_buffer_id(),
- picture.bitstream_buffer_id(),
- picture.visible_rect()))) {
+ host_route_id_, picture.picture_buffer_id(),
+ picture.bitstream_buffer_id(), picture.visible_rect(),
+ picture.allow_overlay()))) {
DLOG(ERROR) << "Send(AcceleratedVideoDecoderHostMsg_PictureReady) failed";
}
}

Powered by Google App Engine
This is Rietveld 408576698