summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorTimo Rothenpieler <timo@rothenpieler.org>2021-10-07 17:41:44 +0200
committerTimo Rothenpieler <timo@rothenpieler.org>2021-10-07 18:23:18 +0200
commitd9cb7c62b6937ec4c66f466e45b7dda70f30cae9 (patch)
treeea1325619d086f3649d543dcdf822466040bf519 /libavfilter
parent8f6b124bacca2c0d273be8be2c2428771acd2891 (diff)
downloadffmpeg-d9cb7c62b6937ec4c66f466e45b7dda70f30cae9.tar.gz
avfilter/scale_npp: fix non-aligned output frame dimensions
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_scale_npp.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libavfilter/vf_scale_npp.c b/libavfilter/vf_scale_npp.c
index 502ecfda94..34debc3135 100644
--- a/libavfilter/vf_scale_npp.c
+++ b/libavfilter/vf_scale_npp.c
@@ -481,13 +481,16 @@ static int nppscale_scale(AVFilterContext *ctx, AVFrame *out, AVFrame *in)
src = s->stages[i].frame;
last_stage = i;
}
-
if (last_stage < 0)
return AVERROR_BUG;
+
ret = av_hwframe_get_buffer(src->hw_frames_ctx, s->tmp_frame, 0);
if (ret < 0)
return ret;
+ s->tmp_frame->width = src->width;
+ s->tmp_frame->height = src->height;
+
av_frame_move_ref(out, src);
av_frame_move_ref(src, s->tmp_frame);