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 |
}; |
/** |