summaryrefslogtreecommitdiff
path: root/libavcodec/mjpegenc_common.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2022-11-24 20:00:18 -0300
committerJames Almer <jamrial@gmail.com>2022-11-26 09:54:01 -0300
commit100939695307743396e30e6310d2ea9cf42f9aab (patch)
tree5ff4e23dc79853014b36463afabfdbaa4284ecaa /libavcodec/mjpegenc_common.c
parent0c5af908c11a4f2bdc7d8d45209155c6d72d6520 (diff)
downloadffmpeg-100939695307743396e30e6310d2ea9cf42f9aab.tar.gz
avcodec/mjpegenc: take into account component count when writing the SOF header size
Fixes ticket #10069 Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/mjpegenc_common.c')
-rw-r--r--libavcodec/mjpegenc_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mjpegenc_common.c b/libavcodec/mjpegenc_common.c
index 6dfc4469a5..049ae3d929 100644
--- a/libavcodec/mjpegenc_common.c
+++ b/libavcodec/mjpegenc_common.c
@@ -308,7 +308,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))