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 | 30 |
31 struct tx_counts { | 31 struct tx_counts { |
32 unsigned int p32x32[TX_SIZE_CONTEXTS][TX_SIZES]; | 32 unsigned int p32x32[TX_SIZE_CONTEXTS][TX_SIZES]; |
33 unsigned int p16x16[TX_SIZE_CONTEXTS][TX_SIZES - 1]; | 33 unsigned int p16x16[TX_SIZE_CONTEXTS][TX_SIZES - 1]; |
34 unsigned int p8x8[TX_SIZE_CONTEXTS][TX_SIZES - 2]; | 34 unsigned int p8x8[TX_SIZE_CONTEXTS][TX_SIZES - 2]; |
35 }; | 35 }; |
36 | 36 |
37 extern const vp9_prob vp9_kf_uv_mode_prob[INTRA_MODES][INTRA_MODES - 1]; | 37 extern const vp9_prob vp9_kf_uv_mode_prob[INTRA_MODES][INTRA_MODES - 1]; |
38 extern const vp9_prob vp9_kf_y_mode_prob[INTRA_MODES][INTRA_MODES] | 38 extern const vp9_prob vp9_kf_y_mode_prob[INTRA_MODES][INTRA_MODES] |
39 [INTRA_MODES - 1]; | 39 [INTRA_MODES - 1]; |
40 | 40 extern const vp9_prob vp9_kf_partition_probs[PARTITION_CONTEXTS] |
| 41 [PARTITION_TYPES - 1]; |
41 extern const vp9_tree_index vp9_intra_mode_tree[TREE_SIZE(INTRA_MODES)]; | 42 extern const vp9_tree_index vp9_intra_mode_tree[TREE_SIZE(INTRA_MODES)]; |
42 extern struct vp9_token vp9_intra_mode_encodings[INTRA_MODES]; | |
43 | |
44 extern const vp9_tree_index vp9_inter_mode_tree[TREE_SIZE(INTER_MODES)]; | 43 extern const vp9_tree_index vp9_inter_mode_tree[TREE_SIZE(INTER_MODES)]; |
45 extern struct vp9_token vp9_inter_mode_encodings[INTER_MODES]; | |
46 | |
47 extern const vp9_tree_index vp9_partition_tree[TREE_SIZE(PARTITION_TYPES)]; | 44 extern const vp9_tree_index vp9_partition_tree[TREE_SIZE(PARTITION_TYPES)]; |
48 extern struct vp9_token vp9_partition_encodings[PARTITION_TYPES]; | |
49 | |
50 extern const vp9_tree_index vp9_switchable_interp_tree | 45 extern const vp9_tree_index vp9_switchable_interp_tree |
51 [TREE_SIZE(SWITCHABLE_FILTERS)]; | 46 [TREE_SIZE(SWITCHABLE_FILTERS)]; |
52 extern struct vp9_token vp9_switchable_interp_encodings[SWITCHABLE_FILTERS]; | |
53 | |
54 void vp9_entropy_mode_init(); | |
55 | 47 |
56 void vp9_setup_past_independence(struct VP9Common *cm); | 48 void vp9_setup_past_independence(struct VP9Common *cm); |
57 | 49 |
58 void vp9_init_mbmode_probs(struct VP9Common *cm); | 50 void vp9_init_mbmode_probs(struct VP9Common *cm); |
59 | 51 |
60 void vp9_adapt_mode_probs(struct VP9Common *cm); | 52 void vp9_adapt_mode_probs(struct VP9Common *cm); |
61 | 53 |
62 void tx_counts_to_branch_counts_32x32(const unsigned int *tx_count_32x32p, | 54 void tx_counts_to_branch_counts_32x32(const unsigned int *tx_count_32x32p, |
63 unsigned int (*ct_32x32p)[2]); | 55 unsigned int (*ct_32x32p)[2]); |
64 void tx_counts_to_branch_counts_16x16(const unsigned int *tx_count_16x16p, | 56 void tx_counts_to_branch_counts_16x16(const unsigned int *tx_count_16x16p, |
65 unsigned int (*ct_16x16p)[2]); | 57 unsigned int (*ct_16x16p)[2]); |
66 void tx_counts_to_branch_counts_8x8(const unsigned int *tx_count_8x8p, | 58 void tx_counts_to_branch_counts_8x8(const unsigned int *tx_count_8x8p, |
67 unsigned int (*ct_8x8p)[2]); | 59 unsigned int (*ct_8x8p)[2]); |
68 | 60 |
69 #endif // VP9_COMMON_VP9_ENTROPYMODE_H_ | 61 #endif // VP9_COMMON_VP9_ENTROPYMODE_H_ |
OLD | NEW |