diff --git a/libavfilter/vf_hwdownload.c b/libavfilter/vf_hwdownload.c index 4ba465bcc74999c24135e1511bf24a363e6fb3d2..42925b83d3b974abc1ccfd4e8bc525852f6633c6 100644 --- a/libavfilter/vf_hwdownload.c +++ b/libavfilter/vf_hwdownload.c @@ -140,7 +140,8 @@ static int hwdownload_filter_frame(AVFilterLink *link, AVFrame *input) goto fail; } - output = ff_get_video_buffer(outlink, outlink->w, outlink->h); + output = ff_get_video_buffer(outlink, ctx->hwframes->width, + ctx->hwframes->height); if (!output) { err = AVERROR(ENOMEM); goto fail; @@ -152,6 +153,9 @@ static int hwdownload_filter_frame(AVFilterLink *link, AVFrame *input) goto fail; } + output->width = outlink->w; + output->height = outlink->h; + err = av_frame_copy_props(output, input); if (err < 0) goto fail;