mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-05-09 12:32:56 +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>
(cherry picked from commit 1009396953)
This commit is contained in:
@@ -275,7 +275,7 @@ void ff_mjpeg_encode_picture_header(AVCodecContext *avctx, PutBitContext *pb,
|
||||
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
|
||||
|| avctx->pix_fmt == AV_PIX_FMT_BGRA
|
||||
|| avctx->pix_fmt == AV_PIX_FMT_BGR24))
|
||||
|
||||
Reference in New Issue
Block a user