[FFmpeg-devel] [PATCH] libavcodec/qsvenc.c: Set height and width alignment when using mjpeg_qsv

Jon Cook jon.cook at cubicmotion.com
Mon Jan 20 11:49:56 EET 2020


From: JonCookCubic <jon.cook at cubicmotion.com>

Currently width_align and height_align are zero which cases "Error submitting the frame for encoding". This change sets the alignments.

Signed-off-by: Jon Cook <jon.cook at cubicmotion.com>
---
 libavcodec/qsvenc.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavcodec/qsvenc.c b/libavcodec/qsvenc.c
index 9e416500e9..b18393532f 100644
--- a/libavcodec/qsvenc.c
+++ b/libavcodec/qsvenc.c
@@ -470,6 +470,9 @@ 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;
+
     return 0;
 }
 
-- 
2.20.1.windows.1



More information about the ffmpeg-devel mailing list