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

Side by Side Diff: source/libvpx/vp8/encoder/tokenize.h

Issue 7671004: Update libvpx snapshot to v0.9.7-p1 (Cayuga). (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libvpx/
Patch Set: '' Created 9 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 | Annotate | Revision Log
« no previous file with comments | « source/libvpx/vp8/encoder/temporal_filter.c ('k') | source/libvpx/vp8/encoder/tokenize.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 /* 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 19 matching lines...) Expand all
30 unsigned char Token; 30 unsigned char Token;
31 unsigned char skip_eob_node; 31 unsigned char skip_eob_node;
32 } TOKENEXTRA; 32 } TOKENEXTRA;
33 33
34 int rd_cost_mby(MACROBLOCKD *); 34 int rd_cost_mby(MACROBLOCKD *);
35 35
36 #ifdef ENTROPY_STATS 36 #ifdef ENTROPY_STATS
37 void init_context_counters(); 37 void init_context_counters();
38 void print_context_counters(); 38 void print_context_counters();
39 39
40 extern _int64 context_counters[BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [v p8_coef_tokens]; 40 extern _int64 context_counters[BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [M AX_ENTROPY_TOKENS];
41 #endif 41 #endif
42 42
43 extern const int *vp8_dct_value_cost_ptr; 43 extern const int *vp8_dct_value_cost_ptr;
44 /* TODO: The Token field should be broken out into a separate char array to 44 /* TODO: The Token field should be broken out into a separate char array to
45 * improve cache locality, since it's needed for costing when the rest of the 45 * improve cache locality, since it's needed for costing when the rest of the
46 * fields are not. 46 * fields are not.
47 */ 47 */
48 extern const TOKENVALUE *vp8_dct_value_tokens_ptr; 48 extern const TOKENVALUE *vp8_dct_value_tokens_ptr;
49 49
50 #endif /* tokenize_h */ 50 #endif /* tokenize_h */
OLDNEW
« no previous file with comments | « source/libvpx/vp8/encoder/temporal_filter.c ('k') | source/libvpx/vp8/encoder/tokenize.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698