Simplify last coeff check in mjpeg decode_block()
Originally committed as revision 25547 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -432,12 +432,7 @@ static int decode_block(MJpegDecodeContext *s, DCTELEM *block,
|
|||||||
|
|
||||||
LAST_SKIP_BITS(re, &s->gb, code)
|
LAST_SKIP_BITS(re, &s->gb, code)
|
||||||
|
|
||||||
if (i >= 63) {
|
if (i > 63) {
|
||||||
if(i == 63){
|
|
||||||
j = s->scantable.permutated[63];
|
|
||||||
block[j] = level * quant_matrix[j];
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
av_log(s->avctx, AV_LOG_ERROR, "error count: %d\n", i);
|
av_log(s->avctx, AV_LOG_ERROR, "error count: %d\n", i);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user