| 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 29 matching lines...) Expand all Loading... |
| 40 extern const vp9_tree_index vp9_coef_con_tree[]; | 40 extern const vp9_tree_index vp9_coef_con_tree[]; |
| 41 extern struct vp9_token vp9_coef_encodings[]; | 41 extern struct vp9_token vp9_coef_encodings[]; |
| 42 | 42 |
| 43 int vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane); | 43 int vp9_is_skippable_in_plane(MACROBLOCK *x, BLOCK_SIZE bsize, int plane); |
| 44 | 44 |
| 45 struct VP9_COMP; | 45 struct VP9_COMP; |
| 46 | 46 |
| 47 void vp9_tokenize_sb(struct VP9_COMP *cpi, TOKENEXTRA **t, int dry_run, | 47 void vp9_tokenize_sb(struct VP9_COMP *cpi, TOKENEXTRA **t, int dry_run, |
| 48 BLOCK_SIZE bsize); | 48 BLOCK_SIZE bsize); |
| 49 | 49 |
| 50 extern const int *vp9_dct_value_cost_ptr; | 50 extern const int16_t *vp9_dct_value_cost_ptr; |
| 51 /* TODO: The Token field should be broken out into a separate char array to | 51 /* TODO: The Token field should be broken out into a separate char array to |
| 52 * improve cache locality, since it's needed for costing when the rest of the | 52 * improve cache locality, since it's needed for costing when the rest of the |
| 53 * fields are not. | 53 * fields are not. |
| 54 */ | 54 */ |
| 55 extern const TOKENVALUE *vp9_dct_value_tokens_ptr; | 55 extern const TOKENVALUE *vp9_dct_value_tokens_ptr; |
| 56 | 56 |
| 57 #ifdef __cplusplus | 57 #ifdef __cplusplus |
| 58 } // extern "C" | 58 } // extern "C" |
| 59 #endif | 59 #endif |
| 60 | 60 |
| 61 #endif // VP9_ENCODER_VP9_TOKENIZE_H_ | 61 #endif // VP9_ENCODER_VP9_TOKENIZE_H_ |
| OLD | NEW |