[FFmpeg-cvslog] r13318 - in trunk/libavfilter: graphparser.c graphparser.h

vitor subversion
Sat May 24 22:40:27 CEST 2008


Author: vitor
Date: Sat May 24 22:40:26 2008
New Revision: 13318

Log:
Simplify
Commited in SoC by Vitor Sessak on 2008-04-18 17:57:42


Modified:
   trunk/libavfilter/graphparser.c
   trunk/libavfilter/graphparser.h

Modified: trunk/libavfilter/graphparser.c
==============================================================================
--- trunk/libavfilter/graphparser.c	(original)
+++ trunk/libavfilter/graphparser.c	Sat May 24 22:40:26 2008
@@ -225,22 +225,20 @@ static int handle_link(char *name, AVFil
 
     if(p->type == LinkTypeIn && type == LinkTypeOut) {
         if(link_filter(filter, pad, p->filter, p->pad_idx, log_ctx) < 0)
-            goto fail;
+            return -1;
     } else if(p->type == LinkTypeOut && type == LinkTypeIn) {
         if(link_filter(p->filter, p->pad_idx, filter, pad, log_ctx) < 0)
-            goto fail;
+            return -1;
     } else {
         av_log(log_ctx, AV_LOG_ERROR,
                "Two links named '%s' are either both input or both output\n",
                name);
-        goto fail;
+        return -1;
     }
 
     p->filter = NULL;
 
     return 0;
- fail:
-    return -1;
 }
 
 

Modified: trunk/libavfilter/graphparser.h
==============================================================================
--- trunk/libavfilter/graphparser.h	(original)
+++ trunk/libavfilter/graphparser.h	Sat May 24 22:40:26 2008
@@ -35,6 +35,9 @@
  * @param outpad  pad index of the output
  * @return        zero on success, -1 on error
  */
-int avfilter_parse_graph(AVFilterGraph *graph, const char *filters, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad);
+int avfilter_parse_graph(AVFilterGraph *graph, const char *filters,
+                         AVFilterContext *in, int inpad,
+                         AVFilterContext *out, int outpad,
+                         AVClass *log_ctx);
 
 #endif  /* FFMPEG_GRAPHPARSER_H */




More information about the ffmpeg-cvslog mailing list