diff options
author | Reimar Döffinger | 2009-09-06 08:56:10 +0000 |
---|---|---|
committer | Reimar Döffinger | 2009-09-06 08:56:10 +0000 |
commit | c55e5b5fee70123108e9e7465651c231a6aa453f (patch) | |
tree | a2e6246c43c0c858f6e3248209809ba6de34d8ab /libavcodec/mdct.c | |
parent | faca56191c0a2e9512703a3e01182451d920a6f8 (diff) |
ff_sine_windows table contains only constant data, too.
Originally committed as revision 19785 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mdct.c')
-rw-r--r-- | libavcodec/mdct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mdct.c b/libavcodec/mdct.c index 8a42adb4f3..684e00d9ad 100644 --- a/libavcodec/mdct.c +++ b/libavcodec/mdct.c @@ -54,7 +54,7 @@ DECLARE_ALIGNED(16, float, ff_sine_512 [ 512]); DECLARE_ALIGNED(16, float, ff_sine_1024[1024]); DECLARE_ALIGNED(16, float, ff_sine_2048[2048]); DECLARE_ALIGNED(16, float, ff_sine_4096[4096]); -float *ff_sine_windows[6] = { +float * const ff_sine_windows[6] = { ff_sine_128, ff_sine_256, ff_sine_512, ff_sine_1024, ff_sine_2048, ff_sine_4096 }; |