| Index: ppapi/c/dev/pp_video_dev.h
|
| diff --git a/ppapi/c/dev/pp_video_dev.h b/ppapi/c/dev/pp_video_dev.h
|
| index 75ee21a219dd46d201268663b79dc39668662d93..4bf98083371402affde8fcd0393cef3b77595899 100644
|
| --- a/ppapi/c/dev/pp_video_dev.h
|
| +++ b/ppapi/c/dev/pp_video_dev.h
|
| @@ -29,7 +29,8 @@
|
| * 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.
|
| + * Note: These are translated into media::VideoCodecProfile in
|
| + * content/renderer/pepper/ppb_video_decoder_impl.cc, keep them in sync.
|
| */
|
| typedef enum {
|
| PP_VIDEODECODER_PROFILE_UNKNOWN = -1,
|
| @@ -45,7 +46,11 @@ typedef enum {
|
| PP_VIDEODECODER_H264PROFILE_SCALABLEHIGH = 9,
|
| PP_VIDEODECODER_H264PROFILE_STEREOHIGH = 10,
|
| PP_VIDEODECODER_H264PROFILE_MULTIVIEWHIGH = 11,
|
| - PP_VIDEODECODER_VP8PROFILE_ANY = 12
|
| + PP_VIDEODECODER_VP8PROFILE_ANY = 12,
|
| + PP_VIDEODECODER_VP9PROFILE_ANY = 13,
|
| + PP_VIDEODECODER_HEVCPROFILE_MAIN = 14,
|
| + PP_VIDEODECODER_HEVCPROFILE_MAIN10 = 15,
|
| + PP_VIDEODECODER_HEVCPROFILE_MAIN_STILL_PICTURE = 16
|
| } PP_VideoDecoder_Profile;
|
| PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_VideoDecoder_Profile, 4);
|
| /**
|
|
|