summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_detokenize.c
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2013-04-03 16:12:11 -0700
committerJohn Koleszar <jkoleszar@google.com>2013-04-03 16:12:51 -0700
commit1e5f25ecc87c9119f08e20644902d7e73b79dac5 (patch)
tree7db10c863dde2d842a2fef246151c94334faebaa /vp9/decoder/vp9_detokenize.c
parentdcd3a5c0552069ffa728c9fc79abb1dd130551a4 (diff)
downloadlibvpx-1e5f25ecc87c9119f08e20644902d7e73b79dac5.tar
libvpx-1e5f25ecc87c9119f08e20644902d7e73b79dac5.tar.gz
libvpx-1e5f25ecc87c9119f08e20644902d7e73b79dac5.tar.bz2
libvpx-1e5f25ecc87c9119f08e20644902d7e73b79dac5.zip
Remove special case vp9_decode_coefs_4x4
This code was only called in the BPRED case, but had no real special case associated with it. Made BPRED behave like all other modes. No bitstream change. Change-Id: I87ba11fe723928b6314d094979011228d5ba006f
Diffstat (limited to 'vp9/decoder/vp9_detokenize.c')
-rw-r--r--vp9/decoder/vp9_detokenize.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/vp9/decoder/vp9_detokenize.c b/vp9/decoder/vp9_detokenize.c
index f0fc97909..9db9d42c1 100644
--- a/vp9/decoder/vp9_detokenize.c
+++ b/vp9/decoder/vp9_detokenize.c
@@ -531,15 +531,6 @@ static int decode_coefs_4x4(VP9D_COMP *dx, MACROBLOCKD *xd,
return c;
}
-int vp9_decode_coefs_4x4(VP9D_COMP *dx, MACROBLOCKD *xd,
- BOOL_DECODER* const bc,
- PLANE_TYPE type, int i) {
- const int segment_id = xd->mode_info_context->mbmi.segment_id;
- const int seg_eob = get_eob(xd, segment_id, 16);
-
- return decode_coefs_4x4(dx, xd, bc, type, i, seg_eob);
-}
-
static int decode_mb_tokens_4x4_uv(VP9D_COMP* const dx,
MACROBLOCKD* const xd,
BOOL_DECODER* const bc,