OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 /* From dev/pp_video_dev.idl modified Fri Nov 11 20:20:20 2011. */ | 6 /* From dev/pp_video_dev.idl modified Wed Nov 23 13:51:18 2011. */ |
7 | 7 |
8 #ifndef PPAPI_C_DEV_PP_VIDEO_DEV_H_ | 8 #ifndef PPAPI_C_DEV_PP_VIDEO_DEV_H_ |
9 #define PPAPI_C_DEV_PP_VIDEO_DEV_H_ | 9 #define PPAPI_C_DEV_PP_VIDEO_DEV_H_ |
10 | 10 |
11 #include "ppapi/c/pp_macros.h" | 11 #include "ppapi/c/pp_macros.h" |
12 #include "ppapi/c/pp_resource.h" | 12 #include "ppapi/c/pp_resource.h" |
13 #include "ppapi/c/pp_size.h" | 13 #include "ppapi/c/pp_size.h" |
14 #include "ppapi/c/pp_stdint.h" | 14 #include "ppapi/c/pp_stdint.h" |
15 | 15 |
16 /** | 16 /** |
17 * @file | 17 * @file |
18 * NOTE: these must be kept in sync with the versions in | 18 * NOTE: these must be kept in sync with the versions in media/! |
19 * media/video/video_decode_accelerator.h! | |
20 */ | 19 */ |
21 | 20 |
22 | 21 |
23 /** | 22 /** |
24 * @addtogroup Enums | 23 * @addtogroup Enums |
25 * @{ | 24 * @{ |
26 */ | 25 */ |
27 /** | 26 /** |
28 * Video format. | 27 * Video format. |
29 * | 28 * |
30 * Keep the values in this enum unique, as they imply format (h.264 vs. VP8, | 29 * Keep the values in this enum unique, as they imply format (h.264 vs. VP8, |
31 * for example), and keep the values for a particular format grouped together | 30 * for example), and keep the values for a particular format grouped together |
32 * for clarity. | 31 * for clarity. |
| 32 * Note: Keep these in sync with media::VideoCodecProfile. |
33 */ | 33 */ |
34 typedef enum { | 34 typedef enum { |
| 35 PP_VIDEODECODER_PROFILE_UNKNOWN = -1, |
35 PP_VIDEODECODER_H264PROFILE_NONE = 0, | 36 PP_VIDEODECODER_H264PROFILE_NONE = 0, |
36 PP_VIDEODECODER_H264PROFILE_BASELINE = 1, | 37 PP_VIDEODECODER_H264PROFILE_BASELINE = 1, |
37 PP_VIDEODECODER_H264PROFILE_MAIN = 2, | 38 PP_VIDEODECODER_H264PROFILE_MAIN = 2, |
38 PP_VIDEODECODER_H264PROFILE_EXTENDED = 3, | 39 PP_VIDEODECODER_H264PROFILE_EXTENDED = 3, |
39 PP_VIDEODECODER_H264PROFILE_HIGH = 4, | 40 PP_VIDEODECODER_H264PROFILE_HIGH = 4, |
40 PP_VIDEODECODER_H264PROFILE_HIGH10PROFILE = 5, | 41 PP_VIDEODECODER_H264PROFILE_HIGH10PROFILE = 5, |
41 PP_VIDEODECODER_H264PROFILE_HIGH422PROFILE = 6, | 42 PP_VIDEODECODER_H264PROFILE_HIGH422PROFILE = 6, |
42 PP_VIDEODECODER_H264PROFILE_HIGH444PREDICTIVEPROFILE = 7, | 43 PP_VIDEODECODER_H264PROFILE_HIGH444PREDICTIVEPROFILE = 7, |
43 PP_VIDEODECODER_H264PROFILE_SCALABLEBASELINE = 8, | 44 PP_VIDEODECODER_H264PROFILE_SCALABLEBASELINE = 8, |
44 PP_VIDEODECODER_H264PROFILE_SCALABLEHIGH = 9, | 45 PP_VIDEODECODER_H264PROFILE_SCALABLEHIGH = 9, |
45 PP_VIDEODECODER_H264PROFILE_STEREOHIGH = 10, | 46 PP_VIDEODECODER_H264PROFILE_STEREOHIGH = 10, |
46 PP_VIDEODECODER_H264PROFILE_MULTIVIEWHIGH = 11 | 47 PP_VIDEODECODER_H264PROFILE_MULTIVIEWHIGH = 11, |
| 48 PP_VIDEODECODER_PROFILE_MAX = PP_VIDEODECODER_H264PROFILE_MULTIVIEWHIGH |
47 } PP_VideoDecoder_Profile; | 49 } PP_VideoDecoder_Profile; |
48 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_VideoDecoder_Profile, 4); | 50 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_VideoDecoder_Profile, 4); |
49 /** | 51 /** |
50 * @} | 52 * @} |
51 */ | 53 */ |
52 | 54 |
53 /** | 55 /** |
54 * @addtogroup Structs | 56 * @addtogroup Structs |
55 * @{ | 57 * @{ |
56 */ | 58 */ |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 */ | 144 */ |
143 PP_VIDEODECODERERROR_PLATFORM_FAILURE = 4 | 145 PP_VIDEODECODERERROR_PLATFORM_FAILURE = 4 |
144 } PP_VideoDecodeError_Dev; | 146 } PP_VideoDecodeError_Dev; |
145 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_VideoDecodeError_Dev, 4); | 147 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_VideoDecodeError_Dev, 4); |
146 /** | 148 /** |
147 * @} | 149 * @} |
148 */ | 150 */ |
149 | 151 |
150 #endif /* PPAPI_C_DEV_PP_VIDEO_DEV_H_ */ | 152 #endif /* PPAPI_C_DEV_PP_VIDEO_DEV_H_ */ |
151 | 153 |
OLD | NEW |