From eee68d96d4e592634562860534acb12247b9a454 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Sat, 24 May 2008 20:41:16 +0000 Subject: Move code out of if Commited in SoC by Vitor Sessak on 2008-04-23 19:05:32 Originally committed as revision 13334 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/graphparser.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'libavfilter/graphparser.c') diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 7b8c814b04..ad1e8d473a 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -196,12 +196,12 @@ static int link_filter_inouts(AVFilterContext *filter, AVFilterInOut **currInputs, AVFilterInOut **openLinks, AVClass *log_ctx) { - AVFilterInOut *p; int pad = 0; pad = filter->input_count; while(pad--) { - p = *currInputs; + AVFilterInOut *p= *currInputs; + *currInputs = (*currInputs)->next; if(!p) { av_log(log_ctx, AV_LOG_ERROR, "Not enough inputs specified for the \"%s\" filter.\n", @@ -212,10 +212,8 @@ static int link_filter_inouts(AVFilterContext *filter, if(p->filter) { if(link_filter(p->filter, p->pad_idx, filter, pad, log_ctx)) return -1; - *currInputs = (*currInputs)->next; av_free(p); } else { - *currInputs = (*currInputs)->next; p->filter = filter; p->pad_idx = pad; p->next = *openLinks; -- cgit v1.2.3