[FFmpeg-soc] [soc]: r2162 - libavfilter/graphparser.c

vitor subversion at mplayerhq.hu
Wed Apr 23 21:24:23 CEST 2008


Author: vitor
Date: Wed Apr 23 21:24:23 2008
New Revision: 2162

Log:
Cosmetics: more indentation consistency

Modified:
   libavfilter/graphparser.c

Modified: libavfilter/graphparser.c
==============================================================================
--- libavfilter/graphparser.c	(original)
+++ libavfilter/graphparser.c	Wed Apr 23 21:24:23 2008
@@ -95,11 +95,11 @@ static char *consume_string(const char *
         char c = *(*buf)++;
         switch (c) {
         case '\\':
-            *out++= *(*buf)++;
+            *out++ = *(*buf)++;
             break;
         case '\'':
             while(**buf && **buf != '\'')
-                *out++= *(*buf)++;
+                *out++ = *(*buf)++;
             if(**buf) (*buf)++;
             break;
         case 0:
@@ -110,10 +110,10 @@ static char *consume_string(const char *
         case ';':
         case ' ':
         case '\n':
-            *out++= 0;
+            *out++ = 0;
             break;
         default:
-            *out++= c;
+            *out++ = c;
         }
     } while(out[-1]);
 
@@ -200,7 +200,7 @@ static int link_filter_inouts(AVFilterCo
 
     pad = filter->input_count;
     while(pad--) {
-        AVFilterInOut *p= *currInputs;
+        AVFilterInOut *p = *currInputs;
         *currInputs = (*currInputs)->next;
         if(!p) {
             av_log(log_ctx, AV_LOG_ERROR,
@@ -371,7 +371,7 @@ int avfilter_parse_graph(AVFilterGraph *
     char chr = 0;
     int pad = 0;
 
-    AVFilterInOut *currInputs=NULL;
+    AVFilterInOut *currInputs = NULL;
     AVFilterInOut *openLinks  = av_malloc(sizeof(AVFilterInOut));
 
     openLinks->name    = "in";



More information about the FFmpeg-soc mailing list