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

Unified Diff: media/base/video_frame.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: media/base/video_frame.cc
diff --git a/media/base/video_frame.cc b/media/base/video_frame.cc
index abea883446669be3e88c1b27bf6c5a4a22d5a277..a0f9d41e80df6e17d3b4adbc464c9f8fe7149ca1 100644
--- a/media/base/video_frame.cc
+++ b/media/base/video_frame.cc
@@ -641,7 +641,8 @@ VideoFrame::VideoFrame(VideoFrame::Format format,
shared_memory_handle_(base::SharedMemory::NULLHandle()),
timestamp_(timestamp),
release_sync_point_(0),
- end_of_stream_(end_of_stream) {
+ end_of_stream_(end_of_stream),
+ allow_overlay_(false) {
DCHECK(IsValidConfig(format_, coded_size_, visible_rect_, natural_size_));
memset(&strides_, 0, sizeof(strides_));

Powered by Google App Engine
This is Rietveld 408576698