]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Cosmetics
authorvitor <vitor@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sat, 24 May 2008 20:42:21 +0000 (20:42 +0000)
committervitor <vitor@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sat, 24 May 2008 20:42:21 +0000 (20:42 +0000)
Commited in SoC by Vitor Sessak on 2008-05-24 17:00:23

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13355 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavfilter/graphparser.c

index c7c6a67e47542738a266b6702e98b79048fc1146..bdcf3673bb51816bc3bf0622217abc6bc16f336b 100644 (file)
@@ -231,7 +231,6 @@ static int link_filter_inouts(AVFilterContext *filter,
         }
     }
 
-
     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 *graph, const char *filters,
             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 *graph, const char *filters,
     } 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;