[FFmpeg-cvslog] lavfi/lut: reindent after previous commit.

Clément Bœsch git at videolan.org
Wed Apr 17 19:28:12 CEST 2013


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Wed Apr 17 12:16:16 2013 +0200| [45f5bf917b5404c3b14fb7413a27aea19abffd56] | committer: Clément Bœsch

lavfi/lut: reindent after previous commit.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=45f5bf917b5404c3b14fb7413a27aea19abffd56
---

 libavfilter/vf_lut.c |   13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/libavfilter/vf_lut.c b/libavfilter/vf_lut.c
index be497ac..b272fda 100644
--- a/libavfilter/vf_lut.c
+++ b/libavfilter/vf_lut.c
@@ -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) {



More information about the ffmpeg-cvslog mailing list