Originally committed as revision 3466 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2004-09-15 12:23:45 +00:00
parent bd368b565b
commit 48cb67c62a

View File

@ -281,7 +281,7 @@ static void generate_len_table(uint8_t *dst, uint64_t *stats, int size){
for(len=0; up[index] != -1; len++)
index= up[index];
if(len > 32) break;
if(len >= 32) break;
dst[i]= len;
}