[FFmpeg-cvslog] lavfi/src_buffer: fix indent.

Clément Bœsch git at videolan.org
Thu May 3 20:03:17 CEST 2012


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Thu May  3 20:02:00 2012 +0200| [af58a77f0a9760c97c736bb54ae2884dcf73cf4f] | committer: Clément Bœsch

lavfi/src_buffer: fix indent.

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

 libavfilter/src_buffer.c |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/libavfilter/src_buffer.c b/libavfilter/src_buffer.c
index 70af9c3..e67564d 100644
--- a/libavfilter/src_buffer.c
+++ b/libavfilter/src_buffer.c
@@ -471,11 +471,10 @@ static int request_frame(AVFilterLink *link)
 
     switch (link->type) {
     case AVMEDIA_TYPE_VIDEO:
-        /* TODO reindent */
-    avfilter_start_frame(link, avfilter_ref_buffer(buf, ~0));
-    avfilter_draw_slice(link, 0, link->h, 1);
-    avfilter_end_frame(link);
-    avfilter_unref_buffer(buf);
+        avfilter_start_frame(link, avfilter_ref_buffer(buf, ~0));
+        avfilter_draw_slice(link, 0, link->h, 1);
+        avfilter_end_frame(link);
+        avfilter_unref_buffer(buf);
         break;
     case AVMEDIA_TYPE_AUDIO:
         avfilter_filter_samples(link, avfilter_ref_buffer(buf, ~0));



More information about the ffmpeg-cvslog mailing list