lavfi/lut: reindent after previous commit.

This commit is contained in:
Clément Bœsch
2013-04-17 19:18:08 +02:00
parent 3db3b278f2
commit 45f5bf917b
+6 -7
View File
@@ -266,13 +266,12 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
direct = 1;
out = in;
} else {
/* TODO reindent */
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 (lut->is_rgb) {