From 336c2ca58587ce604cdbf0e9ba4c6baf9db8a949 Mon Sep 17 00:00:00 2001 From: Benjamin Larsson Date: Sun, 11 Jan 2009 10:40:05 +0000 Subject: Add size that is needed for the wmapro codec Originally committed as revision 16533 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mdct.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libavcodec/mdct.c') diff --git a/libavcodec/mdct.c b/libavcodec/mdct.c index c85b82f9db..661f09ccdd 100644 --- a/libavcodec/mdct.c +++ b/libavcodec/mdct.c @@ -53,8 +53,9 @@ DECLARE_ALIGNED(16, float, ff_sine_256 [ 256]); DECLARE_ALIGNED(16, float, ff_sine_512 [ 512]); DECLARE_ALIGNED(16, float, ff_sine_1024[1024]); DECLARE_ALIGNED(16, float, ff_sine_2048[2048]); -float *ff_sine_windows[5] = { - ff_sine_128, ff_sine_256, ff_sine_512, ff_sine_1024, ff_sine_2048, +DECLARE_ALIGNED(16, float, ff_sine_4096[4096]); +float *ff_sine_windows[6] = { + ff_sine_128, ff_sine_256, ff_sine_512, ff_sine_1024, ff_sine_2048, ff_sine_4096 }; // Generate a sine window. -- cgit v1.2.3