Commit bac08cf0 authored by Clément Bœsch's avatar Clément Bœsch

avfilter/vignette: reindent after previous commit.

parent ed7bc547
...@@ -207,12 +207,12 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) ...@@ -207,12 +207,12 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
direct = 1; direct = 1;
out = in; out = in;
} else { } else {
out = ff_get_video_buffer(outlink, outlink->w, outlink->h); out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
if (!out) { if (!out) {
av_frame_free(&in); av_frame_free(&in);
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
av_frame_copy_props(out, in); av_frame_copy_props(out, in);
} }
if (s->eval_mode == EVAL_MODE_FRAME) if (s->eval_mode == EVAL_MODE_FRAME)
......
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