mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
mjpeg: treat external huffman table setup failure as codec init failure if external huffman table use requested
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
7485e54708
commit
a18e04bcf9
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user