# HG changeset patch # User michael # Date 1219358053 0 # Node ID 4df1c17c034cb11714c56105ec8b46bc46e63c7a # Parent 333b850a194537b07033b3c0a2a392f71f591c71 Try to improve parameter doxy of ff_acelp_interpolate(). diff -r 333b850a1945 -r 4df1c17c034c acelp_filters.h --- a/acelp_filters.h Thu Aug 21 22:05:14 2008 +0000 +++ b/acelp_filters.h Thu Aug 21 22:34:13 2008 +0000 @@ -41,8 +41,8 @@ * @param out [out] buffer for interpolated data * @param in input data * @param filter_coeffs interpolation filter coefficients (0.15) - * @param precision filter is able to interpolate with 1/precision precision of pitch delay - * @param pitch_delay_frac pitch delay, fractional part [0..precision-1] + * @param precision sub sample factor, that is the precision of the position + * @param frac_pos fractional part of position [0..precision-1] * @param filter_length filter length * @param length length of output * @@ -56,7 +56,7 @@ const int16_t* in, const int16_t* filter_coeffs, int precision, - int pitch_delay_frac, + int frac_pos, int filter_length, int length);