# HG changeset patch # User reimar # Date 1252227020 0 # Node ID 9855215d1b2f4a6b7aee21303e7a24930c9ed229 # Parent 69d79f51b8cecbae48f73e52703537e3e80074b4 The pointers in ff_sin_tabs themselves are constant, so mark them accordingly. diff -r 69d79f51b8ce -r 9855215d1b2f rdft.c --- a/rdft.c Sun Sep 06 08:48:45 2009 +0000 +++ b/rdft.c Sun Sep 06 08:50:20 2009 +0000 @@ -40,7 +40,7 @@ DECLARE_ALIGNED_16(FFTSample, ff_sin_16384[8192]); DECLARE_ALIGNED_16(FFTSample, ff_sin_32768[16384]); DECLARE_ALIGNED_16(FFTSample, ff_sin_65536[32768]); -FFTSample *ff_sin_tabs[] = { +FFTSample * const ff_sin_tabs[] = { ff_sin_16, ff_sin_32, ff_sin_64, ff_sin_128, ff_sin_256, ff_sin_512, ff_sin_1024, ff_sin_2048, ff_sin_4096, ff_sin_8192, ff_sin_16384, ff_sin_32768, ff_sin_65536, };