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

Unified Diff: content/common/gpu/media/vt_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: missed v4l2 Created 5 years, 11 months 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/vt_video_decode_accelerator.cc
diff --git a/content/common/gpu/media/vt_video_decode_accelerator.cc b/content/common/gpu/media/vt_video_decode_accelerator.cc
index 6a8595f6fbdac54406d203704c08003e1b4bbf37..c6f94c0a04e86503923c91b70532c08d24d05206 100644
--- a/content/common/gpu/media/vt_video_decode_accelerator.cc
+++ b/content/common/gpu/media/vt_video_decode_accelerator.cc
@@ -861,8 +861,8 @@ bool VTVideoDecodeAccelerator::SendFrame(const Frame& frame) {
available_picture_ids_.pop_back();
picture_bindings_[picture_id] = frame.image;
- client_->PictureReady(media::Picture(
- picture_id, frame.bitstream_id, gfx::Rect(frame.coded_size)));
+ client_->PictureReady(media::Picture(picture_id, frame.bitstream_id,
+ gfx::Rect(frame.coded_size), false));
return true;
}
« no previous file with comments | « content/common/gpu/media/vaapi_video_decode_accelerator.cc ('k') | content/renderer/media/android/webmediaplayer_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698