[SCM] libav/experimental: Move var declaration to where it is needed Commited in SoC by Vitor Sessak on 2008-04-23 18:36:26

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:21:27 UTC 2013


The following commit has been merged in the experimental branch:
commit eece0cb089c73379d2442170a2967ba60bb6ef8a
Author: Vitor Sessak <vitor1001 at gmail.com>
Date:   Sat May 24 20:41:01 2008 +0000

    Move var declaration to where it is needed
    Commited in SoC by Vitor Sessak on 2008-04-23 18:36:26
    
    Originally committed as revision 13328 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index 032d128..e8f26f4 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -273,10 +273,10 @@ static int parse_inputs(const char **buf, AVFilterInOut **currInputs,
                         AVFilterInOut **openLinks, AVClass *log_ctx)
 {
     int pad = 0;
-    AVFilterInOut *p;
 
     while (**buf == '[') {
         char *name;
+        AVFilterInOut *p;
 
         parse_link_name(buf, &name, log_ctx);
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list