summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_tokenize.c
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2013-02-14 18:02:55 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2013-02-14 18:02:55 -0800
commit716db10f0d3c1ded6125229864fe5a78e7d0c203 (patch)
tree11e857daa3f23a31fe2d9bba92d9048a34e115ad /vp9/encoder/vp9_tokenize.c
parent03f28c0a12141431de8076970c503ee839d2a268 (diff)
parentae886d6bffb9cd3e889aaaed90644927e3ee34c3 (diff)
downloadlibvpx-716db10f0d3c1ded6125229864fe5a78e7d0c203.tar
libvpx-716db10f0d3c1ded6125229864fe5a78e7d0c203.tar.gz
libvpx-716db10f0d3c1ded6125229864fe5a78e7d0c203.tar.bz2
libvpx-716db10f0d3c1ded6125229864fe5a78e7d0c203.zip
Merge "Moved vp9_get_coef_band to header file" into experimental
Diffstat (limited to 'vp9/encoder/vp9_tokenize.c')
-rw-r--r--vp9/encoder/vp9_tokenize.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vp9/encoder/vp9_tokenize.c b/vp9/encoder/vp9_tokenize.c
index d612eb0fc..98e04591b 100644
--- a/vp9/encoder/vp9_tokenize.c
+++ b/vp9/encoder/vp9_tokenize.c
@@ -219,7 +219,7 @@ static void tokenize_b(VP9_COMP *cpi,
seg_eob = 0;
do {
- const int band = vp9_get_coef_band(c);
+ const int band = get_coef_band(c);
int token;
if (c < eob) {
@@ -774,7 +774,7 @@ static INLINE void stuff_b(VP9_COMP *cpi,
VP9_COMBINEENTROPYCONTEXTS(pt, a_ec, l_ec);
- band = vp9_get_coef_band((type == PLANE_TYPE_Y_NO_DC) ? 1 : 0);
+ band = get_coef_band((type == PLANE_TYPE_Y_NO_DC) ? 1 : 0);
t->Token = DCT_EOB_TOKEN;
t->context_tree = probs[type][band][pt];
t->skip_eob_node = 0;