diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:39:39 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:39:39 +0000 |
commit | 325cb1efb2aa04066763d37cfa484549bfecb532 (patch) | |
tree | 355dc1b90b0093fa59a145193a68feefb4b1d878 /libavfilter | |
parent | a3acd1d9da2ccae727c2d0c9c47c6fcc451f0796 (diff) | |
download | ffmpeg-325cb1efb2aa04066763d37cfa484549bfecb532.tar.gz |
More simplifying
Commited in SoC by Vitor Sessak on 2008-04-10 18:26:40
Originally committed as revision 13303 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/graphparser.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 5d688397e8..d9760ffbe5 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -206,10 +206,9 @@ static void free_inout(AVFilterInOut *head) /** * Parse "[a1][link2] ... [etc]" */ -static int parse_inouts(const char **buf, AVFilterInOut **inout, int firstpad, +static int parse_inouts(const char **buf, AVFilterInOut **inout, int pad, enum LinkType type, AVFilterContext *filter) { - int pad = firstpad; while (**buf == '[') { AVFilterInOut *inoutn = av_malloc(sizeof(AVFilterInOut)); parse_link_name(buf, &inoutn->name); |