Commit 113c0854 authored by michael's avatar michael

Replace cliping in ff_acelp_interpolate() by a check&av_log, this should be the

quickest way to find out if it is needed.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14970 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ad878517
......@@ -75,7 +75,9 @@ void ff_acelp_interpolate(
i++;
v += in[n - i] * filter_coeffs[idx - frac_pos];
}
out[n] = av_clip_int16(v >> 15);
if(av_clip_int16(v>>15) != (v>>15))
av_log(NULL, AV_LOG_WARNING, "overflow that would need cliping in ff_acelp_interpolate()\n");
out[n] = v >> 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