Commit c55e5b5f authored by Reimar Döffinger's avatar Reimar Döffinger

ff_sine_windows table contains only constant data, too.

Originally committed as revision 19785 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent faca5619
...@@ -757,7 +757,7 @@ extern float ff_sine_512 [ 512]; ...@@ -757,7 +757,7 @@ extern float ff_sine_512 [ 512];
extern float ff_sine_1024[1024]; extern float ff_sine_1024[1024];
extern float ff_sine_2048[2048]; extern float ff_sine_2048[2048];
extern float ff_sine_4096[4096]; extern float ff_sine_4096[4096];
extern float *ff_sine_windows[6]; extern float * const ff_sine_windows[6];
int ff_mdct_init(MDCTContext *s, int nbits, int inverse, double scale); int ff_mdct_init(MDCTContext *s, int nbits, int inverse, double scale);
void ff_imdct_calc_c(MDCTContext *s, FFTSample *output, const FFTSample *input); void ff_imdct_calc_c(MDCTContext *s, FFTSample *output, const FFTSample *input);
......
...@@ -54,7 +54,7 @@ DECLARE_ALIGNED(16, float, ff_sine_512 [ 512]); ...@@ -54,7 +54,7 @@ DECLARE_ALIGNED(16, float, ff_sine_512 [ 512]);
DECLARE_ALIGNED(16, float, ff_sine_1024[1024]); DECLARE_ALIGNED(16, float, ff_sine_1024[1024]);
DECLARE_ALIGNED(16, float, ff_sine_2048[2048]); DECLARE_ALIGNED(16, float, ff_sine_2048[2048]);
DECLARE_ALIGNED(16, float, ff_sine_4096[4096]); DECLARE_ALIGNED(16, float, ff_sine_4096[4096]);
float *ff_sine_windows[6] = { float * const ff_sine_windows[6] = {
ff_sine_128, ff_sine_256, ff_sine_512, ff_sine_1024, ff_sine_2048, ff_sine_4096 ff_sine_128, ff_sine_256, ff_sine_512, ff_sine_1024, ff_sine_2048, ff_sine_4096
}; };
......
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