comparison acelp_filters.h @ 7164:3c7f3265f970 libavcodec

Make ff_acelp_lp_synthesis_filter() receives a pointer to the actual filter coefficients and not the pointer minus one
author vitor
date Sun, 29 Jun 2008 21:37:03 +0000
parents 2b763a495c07
children 4fa4dde521b0
comparison
equal deleted inserted replaced
7163:ec5bae4d05a2 7164:3c7f3265f970
123 * \brief LP synthesis filter 123 * \brief LP synthesis filter
124 * \param out [out] pointer to output buffer 124 * \param out [out] pointer to output buffer
125 * \param filter_coeffs filter coefficients (-0x8000 <= (3.12) < 0x8000) 125 * \param filter_coeffs filter coefficients (-0x8000 <= (3.12) < 0x8000)
126 * \param in input signal 126 * \param in input signal
127 * \param buffer_length amount of data to process 127 * \param buffer_length amount of data to process
128 * \param filter_length filter length (11 for 10th order LP filter) 128 * \param filter_length filter length (10 for 10th order LP filter)
129 * \param stop_on_overflow 1 - return immediately if overflow occurs 129 * \param stop_on_overflow 1 - return immediately if overflow occurs
130 * 0 - ignore overflows 130 * 0 - ignore overflows
131 * \param rounder the amount to add for rounding (usually 0x800 or 0xfff) 131 * \param rounder the amount to add for rounding (usually 0x800 or 0xfff)
132 * 132 *
133 * \return 1 if overflow occurred, 0 - otherwise 133 * \return 1 if overflow occurred, 0 - otherwise