comparison acelp_vectors.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 dc394a1cc943
children
comparison
equal deleted inserted replaced
12180:b24153464669 12181:0885e7a93ed4
132 */ 132 */
133 extern const float ff_pow_0_55[10]; 133 extern const float ff_pow_0_55[10];
134 134
135 /** 135 /**
136 * Decode fixed-codebook vector (3.8 and D.5.8 of G.729, 5.7.1 of AMR). 136 * Decode fixed-codebook vector (3.8 and D.5.8 of G.729, 5.7.1 of AMR).
137 * @param fc_v [out] decoded fixed codebook vector (2.13) 137 * @param[out] fc_v decoded fixed codebook vector (2.13)
138 * @param tab1 table used for first pulse_count pulses 138 * @param tab1 table used for first pulse_count pulses
139 * @param tab2 table used for last pulse 139 * @param tab2 table used for last pulse
140 * @param pulse_indexes fixed codebook indexes 140 * @param pulse_indexes fixed codebook indexes
141 * @param pulse_signs signs of the excitation pulses (0 bit value 141 * @param pulse_signs signs of the excitation pulses (0 bit value
142 * means negative sign) 142 * means negative sign)
172 int half_pulse_count, int bits); 172 int half_pulse_count, int bits);
173 173
174 174
175 /** 175 /**
176 * weighted sum of two vectors with rounding. 176 * weighted sum of two vectors with rounding.
177 * @param out [out] result of addition 177 * @param[out] out result of addition
178 * @param in_a first vector 178 * @param in_a first vector
179 * @param in_b second vector 179 * @param in_b second vector
180 * @param weight_coeff_a first vector weight coefficient 180 * @param weight_coeff_a first vector weight coefficient
181 * @param weight_coeff_a second vector weight coefficient 181 * @param weight_coeff_a second vector weight coefficient
182 * @param rounder this value will be added to the sum of the two vectors 182 * @param rounder this value will be added to the sum of the two vectors
196 int shift, 196 int shift,
197 int length); 197 int length);
198 198
199 /** 199 /**
200 * float implementation of weighted sum of two vectors. 200 * float implementation of weighted sum of two vectors.
201 * @param out [out] result of addition 201 * @param[out] out result of addition
202 * @param in_a first vector 202 * @param in_a first vector
203 * @param in_b second vector 203 * @param in_b second vector
204 * @param weight_coeff_a first vector weight coefficient 204 * @param weight_coeff_a first vector weight coefficient
205 * @param weight_coeff_a second vector weight coefficient 205 * @param weight_coeff_a second vector weight coefficient
206 * @param length vectors length 206 * @param length vectors length