diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2005-11-13 17:46:21 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2005-11-13 17:46:21 +0000 |
commit | 2b18752c28d894995399ce280912073047f81efb (patch) | |
tree | 804074e5e9f4130d05bd3d993804b4486b73e7c3 /libavcodec/vp3data.h | |
parent | 1fd7ec4412f83fa669e75b88cba711718397bb78 (diff) | |
download | ffmpeg-2b18752c28d894995399ce280912073047f81efb.tar.gz |
mode_code_vlc_table size mismatch
Originally committed as revision 4701 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3data.h')
-rw-r--r-- | libavcodec/vp3data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3data.h b/libavcodec/vp3data.h index 8bead2fc15..895ba2ed43 100644 --- a/libavcodec/vp3data.h +++ b/libavcodec/vp3data.h @@ -118,7 +118,7 @@ static const uint16_t fragment_run_length_vlc_table[30][2] = { { 0x1FC, 9 }, { 0x1FD, 9 }, { 0x1FE, 9 }, { 0x1FF, 9 } }; -static const uint8_t mode_code_vlc_table[30][2] = { +static const uint8_t mode_code_vlc_table[8][2] = { { 0, 1 }, { 2, 2 }, { 6, 3 }, { 14, 4 }, { 30, 5 }, { 62, 6 }, |