[FFmpeg-soc] [soc]: r2153 - libavfilter/graphparser.c
vitor
subversion at mplayerhq.hu
Wed Apr 23 20:36:26 CEST 2008
Author: vitor
Date: Wed Apr 23 20:36:26 2008
New Revision: 2153
Log:
Move var declaration to where it is needed
Modified:
libavfilter/graphparser.c
Modified: libavfilter/graphparser.c
==============================================================================
--- libavfilter/graphparser.c (original)
+++ libavfilter/graphparser.c Wed Apr 23 20:36:26 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-soc
mailing list