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

Side by Side Diff: ppapi/c/pp_codecs.h

Issue 1769593002: Add 4 VP9 profiles to the media::VideoCodecProfile enum. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@hevc-codec-7
Patch Set: CR feedback Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 /* Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2014 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 pp_codecs.idl modified Fri Sep 18 10:42:55 2015. */ 6 /* From pp_codecs.idl modified Fri Mar 4 11:31:56 2016. */
7 7
8 #ifndef PPAPI_C_PP_CODECS_H_ 8 #ifndef PPAPI_C_PP_CODECS_H_
9 #define PPAPI_C_PP_CODECS_H_ 9 #define PPAPI_C_PP_CODECS_H_
10 10
11 #include "ppapi/c/pp_bool.h" 11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_macros.h" 12 #include "ppapi/c/pp_macros.h"
13 #include "ppapi/c/pp_point.h" 13 #include "ppapi/c/pp_point.h"
14 #include "ppapi/c/pp_rect.h" 14 #include "ppapi/c/pp_rect.h"
15 #include "ppapi/c/pp_size.h" 15 #include "ppapi/c/pp_size.h"
16 #include "ppapi/c/pp_stdint.h" 16 #include "ppapi/c/pp_stdint.h"
(...skipping 14 matching lines...) Expand all
31 PP_VIDEOPROFILE_H264EXTENDED = 2, 31 PP_VIDEOPROFILE_H264EXTENDED = 2,
32 PP_VIDEOPROFILE_H264HIGH = 3, 32 PP_VIDEOPROFILE_H264HIGH = 3,
33 PP_VIDEOPROFILE_H264HIGH10PROFILE = 4, 33 PP_VIDEOPROFILE_H264HIGH10PROFILE = 4,
34 PP_VIDEOPROFILE_H264HIGH422PROFILE = 5, 34 PP_VIDEOPROFILE_H264HIGH422PROFILE = 5,
35 PP_VIDEOPROFILE_H264HIGH444PREDICTIVEPROFILE = 6, 35 PP_VIDEOPROFILE_H264HIGH444PREDICTIVEPROFILE = 6,
36 PP_VIDEOPROFILE_H264SCALABLEBASELINE = 7, 36 PP_VIDEOPROFILE_H264SCALABLEBASELINE = 7,
37 PP_VIDEOPROFILE_H264SCALABLEHIGH = 8, 37 PP_VIDEOPROFILE_H264SCALABLEHIGH = 8,
38 PP_VIDEOPROFILE_H264STEREOHIGH = 9, 38 PP_VIDEOPROFILE_H264STEREOHIGH = 9,
39 PP_VIDEOPROFILE_H264MULTIVIEWHIGH = 10, 39 PP_VIDEOPROFILE_H264MULTIVIEWHIGH = 10,
40 PP_VIDEOPROFILE_VP8_ANY = 11, 40 PP_VIDEOPROFILE_VP8_ANY = 11,
41 PP_VIDEOPROFILE_VP9_ANY = 12, 41 PP_VIDEOPROFILE_VP9_PROFILE0 = 12,
42 PP_VIDEOPROFILE_MAX = PP_VIDEOPROFILE_VP9_ANY 42 PP_VIDEOPROFILE_VP9_PROFILE1 = 13,
43 PP_VIDEOPROFILE_VP9_PROFILE2 = 14,
44 PP_VIDEOPROFILE_VP9_PROFILE3 = 15,
45 PP_VIDEOPROFILE_MAX = PP_VIDEOPROFILE_VP9_PROFILE3
43 } PP_VideoProfile; 46 } PP_VideoProfile;
44 47
45 /** 48 /**
46 * Audio profiles. 49 * Audio profiles.
47 */ 50 */
48 typedef enum { 51 typedef enum {
49 PP_AUDIOPROFILE_OPUS = 0, 52 PP_AUDIOPROFILE_OPUS = 0,
50 PP_AUDIOPROFILE_MAX = PP_AUDIOPROFILE_OPUS 53 PP_AUDIOPROFILE_MAX = PP_AUDIOPROFILE_OPUS
51 } PP_AudioProfile; 54 } PP_AudioProfile;
52 55
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 * The base address of the bitstream data. 255 * The base address of the bitstream data.
253 */ 256 */
254 void* buffer; 257 void* buffer;
255 }; 258 };
256 /** 259 /**
257 * @} 260 * @}
258 */ 261 */
259 262
260 #endif /* PPAPI_C_PP_CODECS_H_ */ 263 #endif /* PPAPI_C_PP_CODECS_H_ */
261 264
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698