Commit a18e04bc authored by Dustin Brody's avatar Dustin Brody Committed by Anton Khirnov

mjpeg: treat external huffman table setup failure as codec init failure if...

mjpeg: treat external huffman table setup failure as codec init failure if external huffman table use requested
Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent 7485e547
......@@ -101,8 +101,8 @@ av_cold int ff_mjpeg_decode_init(AVCodecContext *avctx)
av_log(avctx, AV_LOG_INFO, "mjpeg: using external huffman table\n");
init_get_bits(&s->gb, avctx->extradata, avctx->extradata_size*8);
if (ff_mjpeg_decode_dht(s)) {
av_log(avctx, AV_LOG_ERROR, "mjpeg: error using external huffman table, switching back to internal\n");
build_basic_mjpeg_vlc(s);
av_log(avctx, AV_LOG_ERROR, "mjpeg: error using external huffman table\n");
return AVERROR_INVALIDDATA;
}
}
if (avctx->extradata_size > 9 &&
......
......@@ -47,9 +47,7 @@ static av_cold int mxpeg_decode_init(AVCodecContext *avctx)
s->picture[0].reference = s->picture[1].reference = 3;
s->jpg.picture_ptr = &s->picture[0];
ff_mjpeg_decode_init(avctx);
return 0;
return ff_mjpeg_decode_init(avctx);
}
static int mxpeg_decode_app(MXpegDecodeContext *s,
......
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