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

Unified Diff: media/video/video_decode_accelerator.h

Issue 2693653003: Merge M57: "Make setOutputSurface, encrypted capabilities. Blacklist hi6210sft." (Closed)
Patch Set: Created 3 years, 10 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 ffac2dee95d22c820e3a58c3ccf058951ed51b2d..ff18007634a42e3c4f27be85fd75797630b3bf77 100644
--- a/media/video/video_decode_accelerator.h
+++ b/media/video/video_decode_accelerator.h
@@ -80,6 +80,13 @@ class MEDIA_EXPORT VideoDecodeAccelerator {
// If set, video frames will have COPY_REQUIRED flag which will cause
// an extra texture copy during composition.
REQUIRES_TEXTURE_COPY = 1 << 3,
+
+ // Whether the VDA supports encrypted streams or not.
+ SUPPORTS_ENCRYPTED_STREAMS = 1 << 4,
+
+ // If set the decoder does not require a restart in order to switch to
+ // using an external output surface.
+ SUPPORTS_SET_EXTERNAL_OUTPUT_SURFACE = 1 << 5,
};
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