Commit 90ed076c authored by Vitor Sessak's avatar Vitor Sessak

Merge variable initialization and declaration

Commited in SoC by Vitor Sessak on 2008-05-24 17:01:01

Originally committed as revision 13356 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c185fc5d
......@@ -207,9 +207,8 @@ static int link_filter_inouts(AVFilterContext *filter,
AVFilterInOut **currInputs,
AVFilterInOut **openLinks, AVClass *log_ctx)
{
int pad = 0;
int pad = filter->input_count;
pad = filter->input_count;
while(pad--) {
AVFilterInOut *p = *currInputs;
*currInputs = (*currInputs)->next;
......
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