]> git.sesse.net Git - ffmpeg/commitdiff
libavcodec/qsvenc.c: Set mjpeg height and width alignment
authorJonCookCubic <jon.cook@cubicmotion.com>
Tue, 21 Jan 2020 13:06:43 +0000 (13:06 +0000)
committerZhong Li <zhongli_dev@126.com>
Tue, 18 Feb 2020 02:21:02 +0000 (10:21 +0800)
Currently width_align and height_align are zero when encoding with mjpeg_qsv,
which causes "Error submitting the frame for encoding". This patch sets the alignments.

There is a little bit more about the problem here http://ffmpeg.org/pipermail/ffmpeg-user/2019-November/046143.html

Signed-off-by: JonCookCubic <jon.cook@cubicmotion.com>
Signed-off-by: Zhong Li <zhongli_dev@126.com>
libavcodec/qsvenc.c

index 9e416500e9aca7a7b58bac1b42d7035c193f4c73..40904af388d05e673d393dd4bb7ce9f52b105320 100644 (file)
@@ -470,6 +470,12 @@ static int init_video_param_jpeg(AVCodecContext *avctx, QSVEncContext *q)
     q->param.mfx.Quality              = av_clip(avctx->global_quality, 1, 100);
     q->param.mfx.RestartInterval      = 0;
 
+    q->width_align = 16;
+    q->height_align = 16;
+
+    q->param.mfx.FrameInfo.Width = FFALIGN(avctx->width, q->width_align);
+    q->param.mfx.FrameInfo.Height = FFALIGN(avctx->height, q->height_align);
+
     return 0;
 }