From 4cfc34d9a8bffe4a1dd53187a3e0f25f34023a09 Mon Sep 17 00:00:00 2001 From: Josh Allmann Date: Fri, 24 May 2019 09:39:47 -0700 Subject: avfilter/vf_scale_cuda: reset frame size after acquiring from hwframe Signed-off-by: Timo Rothenpieler --- libavfilter/vf_scale_cuda.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavfilter/vf_scale_cuda.c') diff --git a/libavfilter/vf_scale_cuda.c b/libavfilter/vf_scale_cuda.c index b7cdb81081..0a73ea1422 100644 --- a/libavfilter/vf_scale_cuda.c +++ b/libavfilter/vf_scale_cuda.c @@ -481,6 +481,9 @@ static int cudascale_scale(AVFilterContext *ctx, AVFrame *out, AVFrame *in) av_frame_move_ref(out, s->frame); av_frame_move_ref(s->frame, s->tmp_frame); + s->frame->width = s->planes_out[0].width; + s->frame->height = s->planes_out[0].height; + ret = av_frame_copy_props(out, in); if (ret < 0) return ret; -- cgit v1.2.3