From 4fd9d074d8f82e4f86688563857d265602851569 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Sat, 24 May 2008 20:40:51 +0000 Subject: Simplify while(pad){pad--; etc} to while(pad--){etc} Commited in SoC by Vitor Sessak on 2008-04-23 18:03:27 Originally committed as revision 13325 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/graphparser.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'libavfilter') diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 5ad8522daa..9518f8e2d3 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -201,9 +201,8 @@ static int link_filter_inouts(AVFilterContext *filter, int pad = 0; pad = filter->input_count; - while(pad) { + while(pad--) { p = *currInputs; - pad--; if(!p) { av_log(log_ctx, AV_LOG_ERROR, "Not enough inputs specified for the \"%s\" filter.\n", @@ -235,9 +234,8 @@ static int link_filter_inouts(AVFilterContext *filter, } pad = filter->output_count; - while(pad) { + while(pad--) { AVFilterInOut *currlinkn = av_malloc(sizeof(AVFilterInOut)); - pad--; currlinkn->name = NULL; currlinkn->type = LinkTypeOut; currlinkn->filter = filter; -- cgit v1.2.3