mirror of https://git.ffmpeg.org/ffmpeg.git
jpegdec: clear EOBRUN on restarts
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1c032e94d0
commit
233177a4ec
|
@ -1180,7 +1180,8 @@ static int mjpeg_decode_scan_progressive_ac(MJpegDecodeContext *s, int ss,
|
|||
s->dsp.idct_put(ptr, linesize, *block);
|
||||
ptr += 8 >> s->avctx->lowres;
|
||||
}
|
||||
handle_rstn(s, 0);
|
||||
if (handle_rstn(s, 0))
|
||||
EOBRUN = 0;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
|
|
Loading…
Reference in New Issue