git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c522b4e
)
fft_dispatch array should be const
author
Reimar Döffinger
<Reimar.Doeffinger@gmx.de>
Tue, 13 Oct 2009 10:30:10 +0000
(10:30 +0000)
committer
Reimar Döffinger
<Reimar.Doeffinger@gmx.de>
Tue, 13 Oct 2009 10:30:10 +0000
(10:30 +0000)
Originally committed as revision 20223 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/fft.c
patch
|
blob
|
history
diff --git
a/libavcodec/fft.c
b/libavcodec/fft.c
index
c827139
..
c1495d5
100644
(file)
--- a/
libavcodec/fft.c
+++ b/
libavcodec/fft.c
@@
-340,7
+340,7
@@
DECL_FFT(16384,8192,4096)
DECL_FFT(32768,16384,8192)
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,
fft2048, fft4096, fft8192, fft16384, fft32768, fft65536,
};