diff options
author | Linjie Fu <linjie.fu@intel.com> | 2019-04-15 21:23:40 +0800 |
---|---|---|
committer | Zhong Li <zhong.li@intel.com> | 2019-04-30 17:14:23 +0800 |
commit | 2d81acaa1adf2280d74d280491f05f0baa4a31d9 (patch) | |
tree | 6d1921e8ed9ee8580aa98ee9893de143c810a215 /libavutil | |
parent | 38c170d54c008ab920d2c1b273fc69ca7a34447c (diff) | |
download | ffmpeg-streaming-2d81acaa1adf2280d74d280491f05f0baa4a31d9.zip ffmpeg-streaming-2d81acaa1adf2280d74d280491f05f0baa4a31d9.tar.gz |
lavu/hwcontext_qsv: Fix the realign check for hwupload
Fix the aligned check in hwupload, input surface should be 16 aligned
too.
Partly fix #7830.
Signed-off-by: Linjie Fu <linjie.fu@intel.com>
Signed-off-by: Zhong Li <zhong.li@intel.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/hwcontext_qsv.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavutil/hwcontext_qsv.c b/libavutil/hwcontext_qsv.c index 8f9838d..49b5952 100644 --- a/libavutil/hwcontext_qsv.c +++ b/libavutil/hwcontext_qsv.c @@ -892,8 +892,7 @@ static int qsv_transfer_data_to(AVHWFramesContext *ctx, AVFrame *dst, if (ret < 0) return ret; - - if (src->height & 16 || src->linesize[0] & 16) { + if (src->height & 15 || src->linesize[0] & 15) { realigned = 1; memset(&tmp_frame, 0, sizeof(tmp_frame)); tmp_frame.format = src->format; |