Commit 6cf4dd9f authored by reimar's avatar reimar

fft_dispatch array should be const


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20223 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 19082cc0
...@@ -340,7 +340,7 @@ DECL_FFT(16384,8192,4096) ...@@ -340,7 +340,7 @@ DECL_FFT(16384,8192,4096)
DECL_FFT(32768,16384,8192) DECL_FFT(32768,16384,8192)
DECL_FFT(65536,32768,16384) DECL_FFT(65536,32768,16384)
static void (*fft_dispatch[])(FFTComplex*) = { static void (* const fft_dispatch[])(FFTComplex*) = {
fft4, fft8, fft16, fft32, fft64, fft128, fft256, fft512, fft1024, fft4, fft8, fft16, fft32, fft64, fft128, fft256, fft512, fft1024,
fft2048, fft4096, fft8192, fft16384, fft32768, fft65536, fft2048, fft4096, fft8192, fft16384, fft32768, fft65536,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment