Mercurial > libavcodec.hg
changeset 7648:4df1c17c034c libavcodec
Try to improve parameter doxy of ff_acelp_interpolate().
author | michael |
---|---|
date | Thu, 21 Aug 2008 22:34:13 +0000 |
parents | 333b850a1945 |
children | 8c5d7ede9c96 |
files | acelp_filters.h |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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);