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

Side by Side Diff: third_party/libwebp/dec/vp8i.h

Issue 1422493004: libwebp: update to 0.4.4 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « third_party/libwebp/dec/io.c ('k') | third_party/libwebp/dec/vp8l.c » ('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 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
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
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_ */
OLDNEW
« no previous file with comments | « third_party/libwebp/dec/io.c ('k') | third_party/libwebp/dec/vp8l.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698