mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-18 13:21:08 +00:00
lavc: fix support of unofficial pix_fmt extensions of jpeg
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
465a72b4b4
commit
dded4cb20b
@ -883,7 +883,9 @@ int attribute_align_arg avcodec_open2(AVCodecContext *avctx, AVCodec *codec, AVD
|
||||
for (i = 0; avctx->codec->pix_fmts[i] != PIX_FMT_NONE; i++)
|
||||
if (avctx->pix_fmt == avctx->codec->pix_fmts[i])
|
||||
break;
|
||||
if (avctx->codec->pix_fmts[i] == PIX_FMT_NONE) {
|
||||
if (avctx->codec->pix_fmts[i] == PIX_FMT_NONE
|
||||
&& !((avctx->codec_id == CODEC_ID_MJPEG || avctx->codec_id == CODEC_ID_LJPEG)
|
||||
&& avctx->strict_std_compliance <= FF_COMPLIANCE_UNOFFICIAL)) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Specified pix_fmt is not supported\n");
|
||||
ret = AVERROR(EINVAL);
|
||||
goto free_and_end;
|
||||
|
Loading…
Reference in New Issue
Block a user