comparison celp_filters.h @ 8095:b9678ea8e5fb libavcodec

Fix numbers in Doxygen comments, patch by Kenan Gillet, kenan.gillet gmail com.
author diego
date Thu, 30 Oct 2008 22:32:43 +0000
parents 408d200a6179
children 2838045383c5
comparison
equal deleted inserted replaced
8094:36671e6689c7 8095:b9678ea8e5fb
53 * 0 - ignore overflows 53 * 0 - ignore overflows
54 * @param rounder the amount to add for rounding (usually 0x800 or 0xfff) 54 * @param rounder the amount to add for rounding (usually 0x800 or 0xfff)
55 * 55 *
56 * @return 1 if overflow occurred, 0 - otherwise 56 * @return 1 if overflow occurred, 0 - otherwise
57 * 57 *
58 * @note Output buffer must contain 10 samples of past 58 * @note Output buffer must contain filter_length samples of past
59 * speech data before pointer. 59 * speech data before pointer.
60 * 60 *
61 * Routine applies 1/A(z) filter to given speech data. 61 * Routine applies 1/A(z) filter to given speech data.
62 */ 62 */
63 int ff_celp_lp_synthesis_filter( 63 int ff_celp_lp_synthesis_filter(
77 * @param filter_coeffs filter coefficients. 77 * @param filter_coeffs filter coefficients.
78 * @param in input signal 78 * @param in input signal
79 * @param buffer_length amount of data to process 79 * @param buffer_length amount of data to process
80 * @param filter_length filter length (10 for 10th order LP filter) 80 * @param filter_length filter length (10 for 10th order LP filter)
81 * 81 *
82 * @note Output buffer must contain 10 samples of past 82 * @note Output buffer must contain filter_length samples of past
83 * speech data before pointer. 83 * speech data before pointer.
84 * 84 *
85 * Routine applies 1/A(z) filter to given speech data. 85 * Routine applies 1/A(z) filter to given speech data.
86 */ 86 */
87 void ff_celp_lp_synthesis_filterf( 87 void ff_celp_lp_synthesis_filterf(