avfilter/vf_pad: use already available outlink variable

This commit is contained in:
Paul B Mahol 2022-03-04 16:26:46 +01:00
parent 1a502b99e8
commit c72b5be9e3
1 changed files with 2 additions and 2 deletions

View File

@ -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)