Commit f10d76a8 authored by michael's avatar michael

vertical align


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14896 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9ef43a2d
......@@ -101,7 +101,7 @@ void ff_acelp_convolve_circ(
fc_out[k] += (fc_in[i] * filter[len + k - i]) >> 15;
for(k=i; k<len; k++)
fc_out[k] += (fc_in[i] * filter[k - i]) >> 15;
fc_out[k] += (fc_in[i] * filter[ k - i]) >> 15;
}
}
}
......
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