Revision e6e98234 libavcodec/ac3enc_float.c
libavcodec/ac3enc_float.c | ||
---|---|---|
83 | 83 |
* Apply KBD window to input samples prior to MDCT. |
84 | 84 |
*/ |
85 | 85 |
static void apply_window(DSPContext *dsp, float *output, const float *input, |
86 |
const float *window, int n)
|
|
86 |
const float *window, unsigned int len)
|
|
87 | 87 |
{ |
88 |
dsp->vector_fmul(output, input, window, n); |
|
88 |
dsp->vector_fmul(output, input, window, len);
|
|
89 | 89 |
} |
90 | 90 |
|
91 | 91 |
|
Also available in: Unified diff