Commit 23532545 authored by cehoyos's avatar cehoyos

10l: Fix forgotten variable rename from r14893 (fixes issue 1675).

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21135 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a6d42d42
......@@ -45,7 +45,7 @@ void ff_acelp_interpolate(int16_t* out, const int16_t* in,
{
int n, i;
assert(pitch_delay_frac >= 0 && pitch_delay_frac < precision);
assert(frac_pos >= 0 && frac_pos < precision);
for (n = 0; n < length; n++) {
int idx = 0;
......
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