Commit c72b5be9 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_pad: use already available outlink variable

parent 1a502b99
...@@ -355,7 +355,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) ...@@ -355,7 +355,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
if (needs_copy) { if (needs_copy) {
av_log(inlink->dst, AV_LOG_DEBUG, "Direct padding impossible allocating new frame\n"); 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->w, s->w),
FFMAX(inlink->h, s->h)); FFMAX(inlink->h, s->h));
if (!out) { if (!out) {
...@@ -410,7 +410,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) ...@@ -410,7 +410,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
if (in != out) if (in != out)
av_frame_free(&in); 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) #define OFFSET(x) offsetof(PadContext, x)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment