diff options
author | Måns Rullgård <mans@mansr.com> | 2010-06-24 09:42:34 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-06-24 09:42:34 +0000 |
commit | dd93649b7160eb0a15cebddb2a46e1ba82437387 (patch) | |
tree | e5d3e0e8714cfc8a6fada16b10860e1a8d403269 /libavcodec/fft.h | |
parent | 796cea09b651e74a0efd162983036524a66d7791 (diff) | |
download | ffmpeg-dd93649b7160eb0a15cebddb2a46e1ba82437387.tar.gz |
Remove VLA in ff_kbd_window_init, limit window size to 1024
Originally committed as revision 23755 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/fft.h')
-rw-r--r-- | libavcodec/fft.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libavcodec/fft.h b/libavcodec/fft.h index 1f5b2e86da..10ca1b140e 100644 --- a/libavcodec/fft.h +++ b/libavcodec/fft.h @@ -151,10 +151,15 @@ static inline void ff_mdct_calc(FFTContext *s, FFTSample *output, } /** + * Maximum window size for ff_kbd_window_init. + */ +#define FF_KBD_WINDOW_MAX 1024 + +/** * Generate a Kaiser-Bessel Derived Window. * @param window pointer to half window * @param alpha determines window shape - * @param n size of half window + * @param n size of half window, max FF_KBD_WINDOW_MAX */ void ff_kbd_window_init(float *window, float alpha, int n); |