avfilter/vignette: reindent after previous commit.

This commit is contained in:
Clément Bœsch 2014-05-16 06:53:36 +02:00
parent ed7bc5471b
commit bac08cf086
1 changed files with 6 additions and 6 deletions

View File

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