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

vitor subversion
Sat May 24 22:41:01 CEST 2008


Author: vitor
Date: Sat May 24 22:41:01 2008
New Revision: 13328

Log:
Move var declaration to where it is needed
Commited in SoC by Vitor Sessak on 2008-04-23 18:36:26


Modified:
   trunk/libavfilter/graphparser.c

Modified: trunk/libavfilter/graphparser.c
==============================================================================
--- trunk/libavfilter/graphparser.c	(original)
+++ trunk/libavfilter/graphparser.c	Sat May 24 22:41:01 2008
@@ -273,10 +273,10 @@ static int parse_inputs(const char **buf
                         AVFilterInOut **openLinks, AVClass *log_ctx)
 {
     int pad = 0;
-    AVFilterInOut *p;
 
     while (**buf == '[') {
         char *name;
+        AVFilterInOut *p;
 
         parse_link_name(buf, &name, log_ctx);
 




More information about the ffmpeg-cvslog mailing list