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

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

Issue 418193003: Using PROFILE_ANY for vp8 and vp9 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 4 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
« no previous file with comments | « ppapi/c/dev/pp_video_dev.h ('k') | ppapi/examples/video_decode/video_decode.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 Mon Jun 30 14:36:36 2014. */ 6 /* From pp_codecs.idl modified Mon Jun 30 14:36:36 2014. */
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
(...skipping 16 matching lines...) Expand all
27 PP_VIDEOPROFILE_H264MAIN = 1, 27 PP_VIDEOPROFILE_H264MAIN = 1,
28 PP_VIDEOPROFILE_H264EXTENDED = 2, 28 PP_VIDEOPROFILE_H264EXTENDED = 2,
29 PP_VIDEOPROFILE_H264HIGH = 3, 29 PP_VIDEOPROFILE_H264HIGH = 3,
30 PP_VIDEOPROFILE_H264HIGH10PROFILE = 4, 30 PP_VIDEOPROFILE_H264HIGH10PROFILE = 4,
31 PP_VIDEOPROFILE_H264HIGH422PROFILE = 5, 31 PP_VIDEOPROFILE_H264HIGH422PROFILE = 5,
32 PP_VIDEOPROFILE_H264HIGH444PREDICTIVEPROFILE = 6, 32 PP_VIDEOPROFILE_H264HIGH444PREDICTIVEPROFILE = 6,
33 PP_VIDEOPROFILE_H264SCALABLEBASELINE = 7, 33 PP_VIDEOPROFILE_H264SCALABLEBASELINE = 7,
34 PP_VIDEOPROFILE_H264SCALABLEHIGH = 8, 34 PP_VIDEOPROFILE_H264SCALABLEHIGH = 8,
35 PP_VIDEOPROFILE_H264STEREOHIGH = 9, 35 PP_VIDEOPROFILE_H264STEREOHIGH = 9,
36 PP_VIDEOPROFILE_H264MULTIVIEWHIGH = 10, 36 PP_VIDEOPROFILE_H264MULTIVIEWHIGH = 10,
37 PP_VIDEOPROFILE_VP8MAIN = 11, 37 PP_VIDEOPROFILE_VP8_ANY = 11,
38 PP_VIDEOPROFILE_VP9MAIN = 12, 38 PP_VIDEOPROFILE_VP9_ANY = 12,
39 PP_VIDEOPROFILE_MAX = PP_VIDEOPROFILE_VP9MAIN 39 PP_VIDEOPROFILE_MAX = PP_VIDEOPROFILE_VP9_ANY
40 } PP_VideoProfile; 40 } PP_VideoProfile;
41 /** 41 /**
42 * @} 42 * @}
43 */ 43 */
44 44
45 /** 45 /**
46 * @addtogroup Structs 46 * @addtogroup Structs
47 * @{ 47 * @{
48 */ 48 */
49 /** 49 /**
(...skipping 25 matching lines...) Expand all
75 * Dimensions of the texture holding the decoded picture. 75 * Dimensions of the texture holding the decoded picture.
76 */ 76 */
77 struct PP_Size texture_size; 77 struct PP_Size texture_size;
78 }; 78 };
79 /** 79 /**
80 * @} 80 * @}
81 */ 81 */
82 82
83 #endif /* PPAPI_C_PP_CODECS_H_ */ 83 #endif /* PPAPI_C_PP_CODECS_H_ */
84 84
OLDNEW
« no previous file with comments | « ppapi/c/dev/pp_video_dev.h ('k') | ppapi/examples/video_decode/video_decode.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698