OLD | NEW |
1 // Copyright 2010 Google Inc. All Rights Reserved. | 1 // Copyright 2010 Google Inc. All Rights Reserved. |
2 // | 2 // |
3 // Use of this source code is governed by a BSD-style license | 3 // Use of this source code is governed by a BSD-style license |
4 // that can be found in the COPYING file in the root of the source | 4 // that can be found in the COPYING file in the root of the source |
5 // tree. An additional intellectual property rights grant can be found | 5 // tree. An additional intellectual property rights grant can be found |
6 // in the file PATENTS. All contributing project authors may | 6 // in the file PATENTS. All contributing project authors may |
7 // be found in the AUTHORS file in the root of the source tree. | 7 // be found in the AUTHORS file in the root of the source tree. |
8 // ----------------------------------------------------------------------------- | 8 // ----------------------------------------------------------------------------- |
9 // | 9 // |
10 // VP8 decoder: internal header. | 10 // VP8 decoder: internal header. |
(...skipping 13 matching lines...) Expand all Loading... |
24 #ifdef __cplusplus | 24 #ifdef __cplusplus |
25 extern "C" { | 25 extern "C" { |
26 #endif | 26 #endif |
27 | 27 |
28 //------------------------------------------------------------------------------ | 28 //------------------------------------------------------------------------------ |
29 // Various defines and enums | 29 // Various defines and enums |
30 | 30 |
31 // version numbers | 31 // version numbers |
32 #define DEC_MAJ_VERSION 0 | 32 #define DEC_MAJ_VERSION 0 |
33 #define DEC_MIN_VERSION 4 | 33 #define DEC_MIN_VERSION 4 |
34 #define DEC_REV_VERSION 3 | 34 #define DEC_REV_VERSION 4 |
35 | 35 |
36 // intra prediction modes | 36 // intra prediction modes |
37 enum { B_DC_PRED = 0, // 4x4 modes | 37 enum { B_DC_PRED = 0, // 4x4 modes |
38 B_TM_PRED, | 38 B_TM_PRED, |
39 B_VE_PRED, | 39 B_VE_PRED, |
40 B_HE_PRED, | 40 B_HE_PRED, |
41 B_RD_PRED, | 41 B_RD_PRED, |
42 B_VR_PRED, | 42 B_VR_PRED, |
43 B_LD_PRED, | 43 B_LD_PRED, |
44 B_VL_PRED, | 44 B_VL_PRED, |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 const uint8_t* VP8DecompressAlphaRows(VP8Decoder* const dec, | 345 const uint8_t* VP8DecompressAlphaRows(VP8Decoder* const dec, |
346 int row, int num_rows); | 346 int row, int num_rows); |
347 | 347 |
348 //------------------------------------------------------------------------------ | 348 //------------------------------------------------------------------------------ |
349 | 349 |
350 #ifdef __cplusplus | 350 #ifdef __cplusplus |
351 } // extern "C" | 351 } // extern "C" |
352 #endif | 352 #endif |
353 | 353 |
354 #endif /* WEBP_DEC_VP8I_H_ */ | 354 #endif /* WEBP_DEC_VP8I_H_ */ |
OLD | NEW |