diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-03-16 13:40:35 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-03-17 13:34:23 +0000 |
commit | 7c60c124c8dfaebfafa2b3c11b316db549617732 (patch) | |
tree | 4b00680838f3e91f500d29c68364c4221e796f07 /libavcodec/hqxvlc.c | |
parent | 4326bc364b58e97fc3d89417054a6b7610179a00 (diff) | |
download | ffmpeg-7c60c124c8dfaebfafa2b3c11b316db549617732.tar.gz |
hqx: Drop unused offsets table
This is a leftover from the static to dynamic vlc table conversion.
Diffstat (limited to 'libavcodec/hqxvlc.c')
-rw-r--r-- | libavcodec/hqxvlc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/hqxvlc.c b/libavcodec/hqxvlc.c index 9bb8adb12a..d185e861da 100644 --- a/libavcodec/hqxvlc.c +++ b/libavcodec/hqxvlc.c @@ -2138,10 +2138,6 @@ const HQXAC ff_hqx_ac[NUM_HQX_AC] = { { 11, 6, ac128_lut }, }; -static const int table_off[] = { - 0, 32, 928, 2272, 4640, -}; - #define INIT_DC_TABLE(idx, name) \ do { \ ret = init_vlc(&ctx->dc_vlc[idx], HQX_DC_VLC_BITS, \ |