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

Unified Diff: ppapi/api/dev/pp_video_dev.idl

Issue 8922010: <video> decode in hardware! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 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
« no previous file with comments | « media/video/video_decode_accelerator.h ('k') | ppapi/c/dev/pp_video_dev.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/dev/pp_video_dev.idl
diff --git a/ppapi/api/dev/pp_video_dev.idl b/ppapi/api/dev/pp_video_dev.idl
index e505714163f594afab02b44381cf130360075879..9c75d66054198394a678ff91fdcc3b21dc19a36d 100644
--- a/ppapi/api/dev/pp_video_dev.idl
+++ b/ppapi/api/dev/pp_video_dev.idl
@@ -4,8 +4,7 @@
*/
/**
- * NOTE: these must be kept in sync with the versions in
- * media/video/video_decode_accelerator.h!
+ * NOTE: these must be kept in sync with the versions in media/!
*/
@@ -15,9 +14,11 @@
* Keep the values in this enum unique, as they imply format (h.264 vs. VP8,
* for example), and keep the values for a particular format grouped together
* for clarity.
+ * Note: Keep these in sync with media::VideoCodecProfile.
*/
[assert_size(4)]
enum PP_VideoDecoder_Profile {
+ PP_VIDEODECODER_PROFILE_UNKNOWN = -1,
PP_VIDEODECODER_H264PROFILE_NONE = 0,
PP_VIDEODECODER_H264PROFILE_BASELINE = 1,
PP_VIDEODECODER_H264PROFILE_MAIN = 2,
@@ -29,7 +30,8 @@ enum PP_VideoDecoder_Profile {
PP_VIDEODECODER_H264PROFILE_SCALABLEBASELINE = 8,
PP_VIDEODECODER_H264PROFILE_SCALABLEHIGH = 9,
PP_VIDEODECODER_H264PROFILE_STEREOHIGH = 10,
- PP_VIDEODECODER_H264PROFILE_MULTIVIEWHIGH = 11
+ PP_VIDEODECODER_H264PROFILE_MULTIVIEWHIGH = 11,
+ PP_VIDEODECODER_PROFILE_MAX = PP_VIDEODECODER_H264PROFILE_MULTIVIEWHIGH
};
/**
« no previous file with comments | « media/video/video_decode_accelerator.h ('k') | ppapi/c/dev/pp_video_dev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698