Re: [FFmpeg-devel] [PATCH 1/3] fft: add missing const.

2014-08-29 Thread Michael Niedermayer
On Fri, Aug 29, 2014 at 06:32:59PM +0200, Reimar Döffinger wrote: > This table was the largest object in FFmpeg's .data, > and really should be in .rodata. > > Signed-off-by: Reimar Döffinger > --- > libavcodec/fft_init_table.c | 2 +- > libavcodec/fft_table.h | 2 +- > libavcodec/fft_templ

[FFmpeg-devel] [PATCH 1/3] fft: add missing const.

2014-08-29 Thread Reimar Döffinger
This table was the largest object in FFmpeg's .data, and really should be in .rodata. Signed-off-by: Reimar Döffinger --- libavcodec/fft_init_table.c | 2 +- libavcodec/fft_table.h | 2 +- libavcodec/fft_template.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib