Commit b88a718a authored by Michael Niedermayer's avatar Michael Niedermayer

avoid if(i>=63) check at the end of decode_block()

Originally committed as revision 5239 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 415365d2
...@@ -1297,14 +1297,17 @@ static int decode_block(MJpegDecodeContext *s, DCTELEM *block, ...@@ -1297,14 +1297,17 @@ static int decode_block(MJpegDecodeContext *s, DCTELEM *block,
LAST_SKIP_BITS(re, &s->gb, code) LAST_SKIP_BITS(re, &s->gb, code)
if (i >= 64) { if (i >= 63) {
if(i == 63){
j = s->scantable.permutated[63];
block[j] = level * quant_matrix[j];
break;
}
dprintf("error count: %d\n", i); dprintf("error count: %d\n", i);
return -1; return -1;
} }
j = s->scantable.permutated[i]; j = s->scantable.permutated[i];
block[j] = level * quant_matrix[j]; block[j] = level * quant_matrix[j];
if (i >= 63)
break;
} }
} }
CLOSE_READER(re, &s->gb) CLOSE_READER(re, &s->gb)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment