comparison celp_filters.h @ 12181:0885e7a93ed4 libavcodec

Fix Doxygen @param command attribute syntax. The [in] and [out] attributes have to be appended to the @param command.
author diego
date Sat, 17 Jul 2010 10:43:42 +0000
parents 63451af5f8f9
children
comparison
equal deleted inserted replaced
12180:b24153464669 12181:0885e7a93ed4
54 void ff_celp_circ_addf(float *out, const float *in, 54 void ff_celp_circ_addf(float *out, const float *in,
55 const float *lagged, int lag, float fac, int n); 55 const float *lagged, int lag, float fac, int n);
56 56
57 /** 57 /**
58 * LP synthesis filter. 58 * LP synthesis filter.
59 * @param out [out] pointer to output buffer 59 * @param[out] out pointer to output buffer
60 * @param filter_coeffs filter coefficients (-0x8000 <= (3.12) < 0x8000) 60 * @param filter_coeffs filter coefficients (-0x8000 <= (3.12) < 0x8000)
61 * @param in input signal 61 * @param in input signal
62 * @param buffer_length amount of data to process 62 * @param buffer_length amount of data to process
63 * @param filter_length filter length (10 for 10th order LP filter) 63 * @param filter_length filter length (10 for 10th order LP filter)
64 * @param stop_on_overflow 1 - return immediately if overflow occurs 64 * @param stop_on_overflow 1 - return immediately if overflow occurs
77 int filter_length, int stop_on_overflow, 77 int filter_length, int stop_on_overflow,
78 int rounder); 78 int rounder);
79 79
80 /** 80 /**
81 * LP synthesis filter. 81 * LP synthesis filter.
82 * @param out [out] pointer to output buffer 82 * @param[out] out pointer to output buffer
83 * - the array out[-filter_length, -1] must 83 * - the array out[-filter_length, -1] must
84 * contain the previous result of this filter 84 * contain the previous result of this filter
85 * @param filter_coeffs filter coefficients. 85 * @param filter_coeffs filter coefficients.
86 * @param in input signal 86 * @param in input signal
87 * @param buffer_length amount of data to process 87 * @param buffer_length amount of data to process
97 const float *in, int buffer_length, 97 const float *in, int buffer_length,
98 int filter_length); 98 int filter_length);
99 99
100 /** 100 /**
101 * LP zero synthesis filter. 101 * LP zero synthesis filter.
102 * @param out [out] pointer to output buffer 102 * @param[out] out pointer to output buffer
103 * @param filter_coeffs filter coefficients. 103 * @param filter_coeffs filter coefficients.
104 * @param in input signal 104 * @param in input signal
105 * - the array in[-filter_length, -1] must 105 * - the array in[-filter_length, -1] must
106 * contain the previous input of this filter 106 * contain the previous input of this filter
107 * @param buffer_length amount of data to process 107 * @param buffer_length amount of data to process