fft: add missing const.
This table was the largest object in FFmpeg's .data, and really should be in .rodata. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
This commit is contained in:
@@ -53,7 +53,7 @@
|
||||
*/
|
||||
#include "libavcodec/fft_table.h"
|
||||
|
||||
int32_t w_tab_sr[MAX_FFT_SIZE/(4*16)] = {
|
||||
const int32_t w_tab_sr[MAX_FFT_SIZE/(4*16)] = {
|
||||
2147483647, 2147481121, 2147473542, 2147460908, 2147443222, 2147420483, 2147392690, 2147359845,
|
||||
2147321946, 2147278995, 2147230991, 2147177934, 2147119825, 2147056664, 2146988450, 2146915184,
|
||||
2146836866, 2146753497, 2146665076, 2146571603, 2146473080, 2146369505, 2146260881, 2146147205,
|
||||
|
Reference in New Issue
Block a user