Commit ebfa1264 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/mjpegdec: allow lowres with amv

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7c3700cd
......@@ -1112,11 +1112,6 @@ static int mjpeg_decode_scan(MJpegDecodeContext *s, int nb_components, int Ah,
if (mb_bitmask)
init_get_bits(&mb_bitmask_gb, mb_bitmask, s->mb_width * s->mb_height);
if (s->flipped && s->avctx->lowres) {
av_log(s->avctx, AV_LOG_ERROR, "Can not flip image with lowres\n");
s->flipped = 0;
}
s->restart_count = 0;
for (i = 0; i < nb_components; i++) {
......
......@@ -117,5 +117,6 @@ AVCodec ff_amv_decoder = {
.init = ff_mjpeg_decode_init,
.close = ff_mjpeg_decode_end,
.decode = sp5x_decode_frame,
.max_lowres = 3,
};
#endif
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