| OLD | NEW |
| 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 Loading... |
| 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 */ |
| OLD | NEW |