diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:41:01 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:41:01 +0000 |
commit | eece0cb089c73379d2442170a2967ba60bb6ef8a (patch) | |
tree | a1573a94103f6c9b324c024e0e601414001f7dcd /libavfilter | |
parent | 0de3407b8f3025a60e8107d08a00b9f4df2512f2 (diff) | |
download | ffmpeg-eece0cb089c73379d2442170a2967ba60bb6ef8a.tar.gz |
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
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/graphparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 032d1282b6..e8f26f456b 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); |