From badcd8d7197e1678e24100fec9f5f262052e4abf Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 21 Aug 2008 22:34:13 +0000 Subject: Try to improve parameter doxy of ff_acelp_interpolate(). Originally committed as revision 14892 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/acelp_filters.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libavcodec/acelp_filters.h') diff --git a/libavcodec/acelp_filters.h b/libavcodec/acelp_filters.h index be2883c643..6436e10d18 100644 --- a/libavcodec/acelp_filters.h +++ b/libavcodec/acelp_filters.h @@ -41,8 +41,8 @@ extern const int16_t ff_acelp_interp_filter[61]; * @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 @@ void ff_acelp_interpolate( const int16_t* in, const int16_t* filter_coeffs, int precision, - int pitch_delay_frac, + int frac_pos, int filter_length, int length); -- cgit v1.2.3