Commit 819b2fc6 authored by vitor's avatar vitor

Simplify

Commited in SoC by Vitor Sessak on 2008-05-24 16:55:47


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13353 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 90837a48
...@@ -258,7 +258,6 @@ static int parse_inputs(const char **buf, AVFilterInOut **currInputs, ...@@ -258,7 +258,6 @@ static int parse_inputs(const char **buf, AVFilterInOut **currInputs,
while(**buf == '[') { while(**buf == '[') {
char *name = parse_link_name(buf, log_ctx); char *name = parse_link_name(buf, log_ctx);
AVFilterInOut *link_to_add;
AVFilterInOut *match; AVFilterInOut *match;
if(!name) if(!name)
...@@ -275,18 +274,15 @@ static int parse_inputs(const char **buf, AVFilterInOut **currInputs, ...@@ -275,18 +274,15 @@ static int parse_inputs(const char **buf, AVFilterInOut **currInputs,
"Label \"%s\" appears twice as input!\n", match->name); "Label \"%s\" appears twice as input!\n", match->name);
return -1; return -1;
} }
link_to_add = match;
} else { } else {
/* Not in the list, so add it as an input */ /* Not in the list, so add it as an input */
link_to_add = av_mallocz(sizeof(AVFilterInOut)); match = av_mallocz(sizeof(AVFilterInOut));
match->name = name;
link_to_add->name = name; match->type = LinkTypeIn;
link_to_add->type = LinkTypeIn; match->pad_idx = pad;
link_to_add->pad_idx = pad;
} }
insert_inout(currInputs, link_to_add); insert_inout(currInputs, match);
*buf += consume_whitespace(*buf); *buf += consume_whitespace(*buf);
pad++; pad++;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment