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

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

Issue 756673003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years 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_entropymv.c ('k') | source/libvpx/vp9/common/vp9_filter.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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 ADST_ADST = 3, // ADST in both directions 97 ADST_ADST = 3, // ADST in both directions
98 TX_TYPES = 4 98 TX_TYPES = 4
99 } TX_TYPE; 99 } TX_TYPE;
100 100
101 typedef enum { 101 typedef enum {
102 UNKNOWN = 0, 102 UNKNOWN = 0,
103 BT_601 = 1, // YUV 103 BT_601 = 1, // YUV
104 BT_709 = 2, // YUV 104 BT_709 = 2, // YUV
105 SMPTE_170 = 3, // YUV 105 SMPTE_170 = 3, // YUV
106 SMPTE_240 = 4, // YUV 106 SMPTE_240 = 4, // YUV
107 RESERVED_1 = 5, 107 BT_2020 = 5, // YUV
108 RESERVED_2 = 6, 108 RESERVED_2 = 6,
109 SRGB = 7 // RGB 109 SRGB = 7 // RGB
110 } COLOR_SPACE; 110 } COLOR_SPACE;
111 111
112 typedef enum { 112 typedef enum {
113 VP9_LAST_FLAG = 1 << 0, 113 VP9_LAST_FLAG = 1 << 0,
114 VP9_GOLD_FLAG = 1 << 1, 114 VP9_GOLD_FLAG = 1 << 1,
115 VP9_ALT_FLAG = 1 << 2, 115 VP9_ALT_FLAG = 1 << 2,
116 } VP9_REFFRAME; 116 } VP9_REFFRAME;
117 117
118 #ifdef __cplusplus 118 #ifdef __cplusplus
119 } // extern "C" 119 } // extern "C"
120 #endif 120 #endif
121 121
122 #endif // VP9_COMMON_VP9_ENUMS_H_ 122 #endif // VP9_COMMON_VP9_ENUMS_H_
OLDNEW
« no previous file with comments | « source/libvpx/vp9/common/vp9_entropymv.c ('k') | source/libvpx/vp9/common/vp9_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698