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

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


Author: vitor
Date: Wed Apr 23 21:14:08 2008
New Revision: 2161

Log:
More cosmetics: make indentation more consistent

Modified:
   libavfilter/graphparser.c

Modified: libavfilter/graphparser.c
==============================================================================
--- libavfilter/graphparser.c	(original)
+++ libavfilter/graphparser.c	Wed Apr 23 21:14:08 2008
@@ -169,7 +169,7 @@ typedef struct AVFilterInOut {
 
 static void free_inout(AVFilterInOut *head)
 {
-    while (head) {
+    while(head) {
         AVFilterInOut *next = head->next;
         av_free(head);
         head = next;
@@ -271,7 +271,7 @@ static int parse_inputs(const char **buf
 {
     int pad = 0;
 
-    while (**buf == '[') {
+    while(**buf == '[') {
         char *name;
         AVFilterInOut *link_to_add;
         AVFilterInOut *match;
@@ -317,7 +317,7 @@ static int parse_outputs(const char **bu
 {
     int pad = 0;
 
-    while (**buf == '[') {
+    while(**buf == '[') {
         char *name;
         AVFilterInOut *match;
 
@@ -424,7 +424,7 @@ int avfilter_parse_graph(AVFilterGraph *
             goto fail;
         }
         index++;
-    } while (chr == ',' || chr == ';');
+    } while(chr == ',' || chr == ';');
 
     if(openLinks && !strcmp(openLinks->name, "out") && currInputs) {
         // Last output can be ommitted if it is "[out]"



More information about the FFmpeg-soc mailing list