diff options
author | Paul B Mahol <onemda@gmail.com> | 2022-03-04 16:26:46 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2022-03-04 18:30:10 +0100 |
commit | c72b5be9e353563b22e7617f9abd14f97ff50f33 (patch) | |
tree | 943f0561c3a2a9b41e6e84102c39e9f368335ea0 /libavfilter | |
parent | 1a502b99e818ee7b8b2b56c4f5c27e31f674c555 (diff) | |
download | ffmpeg-c72b5be9e353563b22e7617f9abd14f97ff50f33.tar.gz |
avfilter/vf_pad: use already available outlink variable
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_pad.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_pad.c b/libavfilter/vf_pad.c index 738e255621..e52f7284d4 100644 --- a/libavfilter/vf_pad.c +++ b/libavfilter/vf_pad.c @@ -355,7 +355,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) if (needs_copy) { av_log(inlink->dst, AV_LOG_DEBUG, "Direct padding impossible allocating new frame\n"); - out = ff_get_video_buffer(inlink->dst->outputs[0], + out = ff_get_video_buffer(outlink, FFMAX(inlink->w, s->w), FFMAX(inlink->h, s->h)); if (!out) { @@ -410,7 +410,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) if (in != out) av_frame_free(&in); - return ff_filter_frame(inlink->dst->outputs[0], out); + return ff_filter_frame(outlink, out); } #define OFFSET(x) offsetof(PadContext, x) |