1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

avcodec/mjpegenc: take into account component count when writing the SOF header size

Fixes ticket #10069

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer
2022-11-24 20:00:18 -03:00
parent 0c5af908c1
commit 1009396953

View File

@@ -308,7 +308,7 @@ void ff_mjpeg_encode_picture_header(AVCodecContext *avctx, PutBitContext *pb,
default: av_assert0(0); default: av_assert0(0);
} }
put_bits(pb, 16, 17); put_bits(pb, 16, 8 + 3 * components);
if (lossless && ( avctx->pix_fmt == AV_PIX_FMT_BGR0 if (lossless && ( avctx->pix_fmt == AV_PIX_FMT_BGR0
|| avctx->pix_fmt == AV_PIX_FMT_BGRA || avctx->pix_fmt == AV_PIX_FMT_BGRA
|| avctx->pix_fmt == AV_PIX_FMT_BGR24)) || avctx->pix_fmt == AV_PIX_FMT_BGR24))