Merge "VP9: Eliminate up_available and left_available"
[aom.git] / vp8 / common / entropymode.c
blob8981a8d3c2a83b94aa2434c2c74bc4c800b19520
1 /*
2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
11 #define USE_PREBUILT_TABLES
13 #include "entropymode.h"
14 #include "entropy.h"
15 #include "vpx_mem/vpx_mem.h"
17 #include "vp8_entropymodedata.h"
19 int vp8_mv_cont(const int_mv *l, const int_mv *a)
21 int lez = (l->as_int == 0);
22 int aez = (a->as_int == 0);
23 int lea = (l->as_int == a->as_int);
25 if (lea && lez)
26 return SUBMVREF_LEFT_ABOVE_ZED;
28 if (lea)
29 return SUBMVREF_LEFT_ABOVE_SAME;
31 if (aez)
32 return SUBMVREF_ABOVE_ZED;
34 if (lez)
35 return SUBMVREF_LEFT_ZED;
37 return SUBMVREF_NORMAL;
40 static const vp8_prob sub_mv_ref_prob [VP8_SUBMVREFS-1] = { 180, 162, 25};
42 const vp8_prob vp8_sub_mv_ref_prob2 [SUBMVREF_COUNT][VP8_SUBMVREFS-1] =
44 { 147, 136, 18 },
45 { 106, 145, 1 },
46 { 179, 121, 1 },
47 { 223, 1 , 34 },
48 { 208, 1 , 1 }
53 const vp8_mbsplit vp8_mbsplits [VP8_NUMMBSPLITS] =
56 0, 0, 0, 0,
57 0, 0, 0, 0,
58 1, 1, 1, 1,
59 1, 1, 1, 1,
62 0, 0, 1, 1,
63 0, 0, 1, 1,
64 0, 0, 1, 1,
65 0, 0, 1, 1,
68 0, 0, 1, 1,
69 0, 0, 1, 1,
70 2, 2, 3, 3,
71 2, 2, 3, 3,
74 0, 1, 2, 3,
75 4, 5, 6, 7,
76 8, 9, 10, 11,
77 12, 13, 14, 15,
81 const int vp8_mbsplit_count [VP8_NUMMBSPLITS] = { 2, 2, 4, 16};
83 const vp8_prob vp8_mbsplit_probs [VP8_NUMMBSPLITS-1] = { 110, 111, 150};
86 /* Array indices are identical to previously-existing INTRAMODECONTEXTNODES. */
88 const vp8_tree_index vp8_bmode_tree[18] = /* INTRAMODECONTEXTNODE value */
90 -B_DC_PRED, 2, /* 0 = DC_NODE */
91 -B_TM_PRED, 4, /* 1 = TM_NODE */
92 -B_VE_PRED, 6, /* 2 = VE_NODE */
93 8, 12, /* 3 = COM_NODE */
94 -B_HE_PRED, 10, /* 4 = HE_NODE */
95 -B_RD_PRED, -B_VR_PRED, /* 5 = RD_NODE */
96 -B_LD_PRED, 14, /* 6 = LD_NODE */
97 -B_VL_PRED, 16, /* 7 = VL_NODE */
98 -B_HD_PRED, -B_HU_PRED /* 8 = HD_NODE */
101 /* Again, these trees use the same probability indices as their
102 explicitly-programmed predecessors. */
104 const vp8_tree_index vp8_ymode_tree[8] =
106 -DC_PRED, 2,
107 4, 6,
108 -V_PRED, -H_PRED,
109 -TM_PRED, -B_PRED
112 const vp8_tree_index vp8_kf_ymode_tree[8] =
114 -B_PRED, 2,
115 4, 6,
116 -DC_PRED, -V_PRED,
117 -H_PRED, -TM_PRED
120 const vp8_tree_index vp8_uv_mode_tree[6] =
122 -DC_PRED, 2,
123 -V_PRED, 4,
124 -H_PRED, -TM_PRED
127 const vp8_tree_index vp8_mbsplit_tree[6] =
129 -3, 2,
130 -2, 4,
131 -0, -1
134 const vp8_tree_index vp8_mv_ref_tree[8] =
136 -ZEROMV, 2,
137 -NEARESTMV, 4,
138 -NEARMV, 6,
139 -NEWMV, -SPLITMV
142 const vp8_tree_index vp8_sub_mv_ref_tree[6] =
144 -LEFT4X4, 2,
145 -ABOVE4X4, 4,
146 -ZERO4X4, -NEW4X4
149 const vp8_tree_index vp8_small_mvtree [14] =
151 2, 8,
152 4, 6,
153 -0, -1,
154 -2, -3,
155 10, 12,
156 -4, -5,
157 -6, -7
160 void vp8_init_mbmode_probs(VP8_COMMON *x)
162 memcpy(x->fc.ymode_prob, vp8_ymode_prob, sizeof(vp8_ymode_prob));
163 memcpy(x->fc.uv_mode_prob, vp8_uv_mode_prob, sizeof(vp8_uv_mode_prob));
164 memcpy(x->fc.sub_mv_ref_prob, sub_mv_ref_prob, sizeof(sub_mv_ref_prob));
167 void vp8_default_bmode_probs(vp8_prob p [VP8_BINTRAMODES-1])
169 memcpy(p, vp8_bmode_prob, sizeof(vp8_bmode_prob));