comparison dsputil.h @ 10144:50ec8930f99e libavcodec

ff_sine_windows table contains only constant data, too.
author reimar
date Sun, 06 Sep 2009 08:56:10 +0000
parents c5e8a5a044c3
children 7a63015e4627
comparison
equal deleted inserted replaced
10143:c5e8a5a044c3 10144:50ec8930f99e
755 extern float ff_sine_256 [ 256]; 755 extern float ff_sine_256 [ 256];
756 extern float ff_sine_512 [ 512]; 756 extern float ff_sine_512 [ 512];
757 extern float ff_sine_1024[1024]; 757 extern float ff_sine_1024[1024];
758 extern float ff_sine_2048[2048]; 758 extern float ff_sine_2048[2048];
759 extern float ff_sine_4096[4096]; 759 extern float ff_sine_4096[4096];
760 extern float *ff_sine_windows[6]; 760 extern float * const ff_sine_windows[6];
761 761
762 int ff_mdct_init(MDCTContext *s, int nbits, int inverse, double scale); 762 int ff_mdct_init(MDCTContext *s, int nbits, int inverse, double scale);
763 void ff_imdct_calc_c(MDCTContext *s, FFTSample *output, const FFTSample *input); 763 void ff_imdct_calc_c(MDCTContext *s, FFTSample *output, const FFTSample *input);
764 void ff_imdct_half_c(MDCTContext *s, FFTSample *output, const FFTSample *input); 764 void ff_imdct_half_c(MDCTContext *s, FFTSample *output, const FFTSample *input);
765 void ff_imdct_calc_3dn(MDCTContext *s, FFTSample *output, const FFTSample *input); 765 void ff_imdct_calc_3dn(MDCTContext *s, FFTSample *output, const FFTSample *input);