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

Side by Side Diff: source/libvpx/vp9/common/vp9_enums.h

Issue 554673004: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « source/libvpx/vp9/common/vp9_common.h ('k') | source/libvpx/vp9/common/vp9_mv.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved. 2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 22 matching lines...) Expand all
33 // sampling. 33 // sampling.
34 // 111: Undefined profile. 34 // 111: Undefined profile.
35 typedef enum BITSTREAM_PROFILE { 35 typedef enum BITSTREAM_PROFILE {
36 PROFILE_0, 36 PROFILE_0,
37 PROFILE_1, 37 PROFILE_1,
38 PROFILE_2, 38 PROFILE_2,
39 PROFILE_3, 39 PROFILE_3,
40 MAX_PROFILES 40 MAX_PROFILES
41 } BITSTREAM_PROFILE; 41 } BITSTREAM_PROFILE;
42 42
43 typedef enum BIT_DEPTH {
44 BITS_8,
45 BITS_10,
46 BITS_12
47 } BIT_DEPTH;
48
49 typedef enum BLOCK_SIZE { 43 typedef enum BLOCK_SIZE {
50 BLOCK_4X4, 44 BLOCK_4X4,
51 BLOCK_4X8, 45 BLOCK_4X8,
52 BLOCK_8X4, 46 BLOCK_8X4,
53 BLOCK_8X8, 47 BLOCK_8X8,
54 BLOCK_8X16, 48 BLOCK_8X16,
55 BLOCK_16X8, 49 BLOCK_16X8,
56 BLOCK_16X16, 50 BLOCK_16X16,
57 BLOCK_16X32, 51 BLOCK_16X32,
58 BLOCK_32X16, 52 BLOCK_32X16,
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 VP9_LAST_FLAG = 1 << 0, 112 VP9_LAST_FLAG = 1 << 0,
119 VP9_GOLD_FLAG = 1 << 1, 113 VP9_GOLD_FLAG = 1 << 1,
120 VP9_ALT_FLAG = 1 << 2, 114 VP9_ALT_FLAG = 1 << 2,
121 } VP9_REFFRAME; 115 } VP9_REFFRAME;
122 116
123 #ifdef __cplusplus 117 #ifdef __cplusplus
124 } // extern "C" 118 } // extern "C"
125 #endif 119 #endif
126 120
127 #endif // VP9_COMMON_VP9_ENUMS_H_ 121 #endif // VP9_COMMON_VP9_ENUMS_H_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/common/vp9_common.h ('k') | source/libvpx/vp9/common/vp9_mv.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698