Browse Source

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

Originally committed as revision 5239 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 20 years ago
parent
commit
b88a718a11
1 changed files with 6 additions and 3 deletions
  1. +6
    -3
      libavcodec/mjpeg.c

+ 6
- 3
libavcodec/mjpeg.c View File

@@ -1297,14 +1297,17 @@ static int decode_block(MJpegDecodeContext *s, DCTELEM *block,

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);
return -1;
}
j = s->scantable.permutated[i];
block[j] = level * quant_matrix[j];
if (i >= 63)
break;
}
}
CLOSE_READER(re, &s->gb)


Loading…
Cancel
Save