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

Unified Diff: media/video/video_decode_accelerator.h

Issue 2052103002: Enable deferred rendering strategy for Android WebView for Spitzer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@spitzer-aw-disable-tests
Patch Set: Addressed comments, fixed Windows compilation Created 4 years, 6 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
« no previous file with comments | « media/gpu/android_video_decode_accelerator.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/video/video_decode_accelerator.h
diff --git a/media/video/video_decode_accelerator.h b/media/video/video_decode_accelerator.h
index 62927eae59fb36e791211544fce0f7c6c3474842..7e3c940d637269499297e724c3353b8cf024bd8c 100644
--- a/media/video/video_decode_accelerator.h
+++ b/media/video/video_decode_accelerator.h
@@ -75,6 +75,10 @@ class MEDIA_EXPORT VideoDecodeAccelerator {
// indicates that the client supports it as well. Refer to
// NotifyInitializationComplete for more details.
SUPPORTS_DEFERRED_INITIALIZATION = 1 << 2,
+
+ // If set, video frames will have COPY_REQUIRED flag which will cause
+ // an extra texture copy during composition.
+ REQUIRES_TEXTURE_COPY = 1 << 3,
};
SupportedProfiles supported_profiles;
« no previous file with comments | « media/gpu/android_video_decode_accelerator.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698