[FFmpeg-cvslog] r13355 - trunk/libavfilter/graphparser.c

vitor subversion
Sat May 24 22:42:21 CEST 2008


Author: vitor
Date: Sat May 24 22:42:21 2008
New Revision: 13355

Log:
Cosmetics
Commited in SoC by Vitor Sessak on 2008-05-24 17:00:23


Modified:
   trunk/libavfilter/graphparser.c

Modified: trunk/libavfilter/graphparser.c
==============================================================================
--- trunk/libavfilter/graphparser.c	(original)
+++ trunk/libavfilter/graphparser.c	Sat May 24 22:42:21 2008
@@ -231,7 +231,6 @@ static int link_filter_inouts(AVFilterCo
         }
     }
 
-
     if(*currInputs) {
         av_log(log_ctx, AV_LOG_ERROR,
                "Too many inputs specified for the \"%s\" filter.\n",
@@ -357,7 +356,7 @@ int avfilter_parse_graph(AVFilterGraph *
             goto fail;
 
         if(filter->input_count == 1 && !currInputs && !index) {
-            // First input can be ommitted if it is "[in]"
+            /* First input can be ommitted if it is "[in]" */
             const char *tmp = "[in]";
             if(parse_inputs(&tmp, &currInputs, &openLinks, log_ctx))
                 goto fail;
@@ -382,7 +381,7 @@ int avfilter_parse_graph(AVFilterGraph *
     } while(chr == ',' || chr == ';');
 
     if(openLinks && !strcmp(openLinks->name, "out") && currInputs) {
-        // Last output can be ommitted if it is "[out]"
+        /* Last output can be ommitted if it is "[out]" */
         const char *tmp = "[out]";
         if(parse_outputs(&tmp, &currInputs, &openLinks, log_ctx) < 0)
             goto fail;




More information about the ffmpeg-cvslog mailing list