diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-04 14:34:38 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-04-05 12:25:12 +0200 |
commit | 52cd84d4d4e335daf26eb8c8b60c2578b3341b91 (patch) | |
tree | 5b32c0ef298e42a58c9b4c26fdf3122f9154957c /libavcodec/h261data.h | |
parent | 0404ec619d43f27b87c424aa1a572a6699fe6a31 (diff) | |
download | ffmpeg-52cd84d4d4e335daf26eb8c8b60c2578b3341b91.tar.gz |
h261: Move mvmap table to the only place it is used
Diffstat (limited to 'libavcodec/h261data.h')
-rw-r--r-- | libavcodec/h261data.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/h261data.h b/libavcodec/h261data.h index bf0b20959b..eb5ee06b37 100644 --- a/libavcodec/h261data.h +++ b/libavcodec/h261data.h @@ -92,10 +92,6 @@ static const uint8_t h261_mv_tab[17][2] = { { 11, 9 }, { 10, 9 }, { 9, 9 }, { 17, 10 }, { 16, 10 }, { 15, 10 }, { 14, 10 }, { 13, 10 }, { 12, 10 } }; -static const int mvmap[17] = { - 0, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16 -}; - // H.261 VLC table for coded block pattern static const uint8_t h261_cbp_tab[63][2] = { { 11, 5 }, { 9, 5 }, { 13, 6 }, { 13, 4 }, { 23, 7 }, { 19, 7 }, { 31, 8 }, { 12, 4 }, |