comparison mdct.c @ 8741:0975a4c09974 libavcodec

Remove documentation of non-existing function parameters.
author diego
date Wed, 04 Feb 2009 20:43:17 +0000
parents eeca2fc122f8
children d527872fdf26
comparison
equal deleted inserted replaced
8740:477d1abdd22b 8741:0975a4c09974
156 156
157 /** 157 /**
158 * Compute inverse MDCT of size N = 2^nbits 158 * Compute inverse MDCT of size N = 2^nbits
159 * @param output N samples 159 * @param output N samples
160 * @param input N/2 samples 160 * @param input N/2 samples
161 * @param tmp N/2 samples
162 */ 161 */
163 void ff_imdct_calc_c(MDCTContext *s, FFTSample *output, const FFTSample *input) 162 void ff_imdct_calc_c(MDCTContext *s, FFTSample *output, const FFTSample *input)
164 { 163 {
165 int k; 164 int k;
166 int n = 1 << s->nbits; 165 int n = 1 << s->nbits;
177 176
178 /** 177 /**
179 * Compute MDCT of size N = 2^nbits 178 * Compute MDCT of size N = 2^nbits
180 * @param input N samples 179 * @param input N samples
181 * @param out N/2 samples 180 * @param out N/2 samples
182 * @param tmp temporary storage of N/2 samples
183 */ 181 */
184 void ff_mdct_calc(MDCTContext *s, FFTSample *out, const FFTSample *input) 182 void ff_mdct_calc(MDCTContext *s, FFTSample *out, const FFTSample *input)
185 { 183 {
186 int i, j, n, n8, n4, n2, n3; 184 int i, j, n, n8, n4, n2, n3;
187 FFTSample re, im; 185 FFTSample re, im;