From 52cd84d4d4e335daf26eb8c8b60c2578b3341b91 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 4 Apr 2013 14:34:38 +0200 Subject: h261: Move mvmap table to the only place it is used --- libavcodec/h261dec.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libavcodec/h261dec.c') diff --git a/libavcodec/h261dec.c b/libavcodec/h261dec.c index 4c31cf52f2..b13d779a65 100644 --- a/libavcodec/h261dec.c +++ b/libavcodec/h261dec.c @@ -222,6 +222,10 @@ static int h261_decode_mb_skipped(H261Context *h, int mba1, int mba2) return 0; } +static const int mvmap[17] = { + 0, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16 +}; + static int decode_mv_component(GetBitContext *gb, int v) { int mv_diff = get_vlc2(gb, h261_mv_vlc.table, H261_MV_VLC_BITS, 2); -- cgit v1.2.3