diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-07-11 12:42:20 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-07-11 12:42:20 +0000 |
commit | 6300c80a8889491a2d5c755b7f7cb7d7b7062270 (patch) | |
tree | 61d24dc1a900ba78efe7aa3d80b68b6c80729a8e /libavcodec/common.c | |
parent | 5ea6f10f722b7d5c63479da591a0d3a2b21d3b2c (diff) | |
download | ffmpeg-6300c80a8889491a2d5c755b7f7cb7d7b7062270.tar.gz |
dont trash table in GET_VLC
Originally committed as revision 741 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/common.c')
-rw-r--r-- | libavcodec/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/common.c b/libavcodec/common.c index abfa19072f..63d17b6c2b 100644 --- a/libavcodec/common.c +++ b/libavcodec/common.c @@ -286,7 +286,7 @@ static int build_table(VLC *vlc, int table_nb_bits, return -1; /* note: realloc has been done, so reload tables */ table = &vlc->table[table_index]; - table[i][0] = index - table_index; //code + table[i][0] = index; //code } } return table_index; |