9c2345a0bd80f29a32d2fdc1bd40862989e71f8d
2 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
3 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 #include "libavutil/mem.h"
31 /* NOTE: soon integer code will be added, so you must use the
33 typedef float FFTSample
;
35 typedef struct FFTComplex
{
39 typedef struct FFTContext
{
44 FFTComplex
*exptab1
; /* only used by SSE code */
46 int mdct_size
; /* size of MDCT (i.e. number of input data * 2) */
47 int mdct_bits
; /* n = 2^nbits */
48 /* pre/post rotation tables */
51 void (*fft_permute
)(struct FFTContext
*s
, FFTComplex
*z
);
52 void (*fft_calc
)(struct FFTContext
*s
, FFTComplex
*z
);
53 void (*imdct_calc
)(struct FFTContext
*s
, FFTSample
*output
, const FFTSample
*input
);
54 void (*imdct_half
)(struct FFTContext
*s
, FFTSample
*output
, const FFTSample
*input
);
55 void (*mdct_calc
)(struct FFTContext
*s
, FFTSample
*output
, const FFTSample
*input
);
58 #define FF_MDCT_PERM_NONE 0
59 #define FF_MDCT_PERM_INTERLEAVE 1
62 #if CONFIG_HARDCODED_TABLES
63 #define COSTABLE_CONST const
64 #define SINTABLE_CONST const
65 #define SINETABLE_CONST const
67 #define COSTABLE_CONST
68 #define SINTABLE_CONST
69 #define SINETABLE_CONST
72 #define COSTABLE(size) \
73 COSTABLE_CONST DECLARE_ALIGNED(16, FFTSample, ff_cos_##size)[size/2]
74 #define SINTABLE(size) \
75 SINTABLE_CONST DECLARE_ALIGNED(16, FFTSample, ff_sin_##size)[size/2]
76 #define SINETABLE(size) \
77 SINETABLE_CONST DECLARE_ALIGNED(16, float, ff_sine_##size)[size]
84 extern COSTABLE(1024);
85 extern COSTABLE(2048);
86 extern COSTABLE(4096);
87 extern COSTABLE(8192);
88 extern COSTABLE(16384);
89 extern COSTABLE(32768);
90 extern COSTABLE(65536);
91 extern COSTABLE_CONST FFTSample
* const ff_cos_tabs
[17];
94 * Initializes the cosine table in ff_cos_tabs[index]
95 * \param index index in ff_cos_tabs array of the table to initialize
97 void ff_init_ff_cos_tabs(int index
);
102 extern SINTABLE(128);
103 extern SINTABLE(256);
104 extern SINTABLE(512);
105 extern SINTABLE(1024);
106 extern SINTABLE(2048);
107 extern SINTABLE(4096);
108 extern SINTABLE(8192);
109 extern SINTABLE(16384);
110 extern SINTABLE(32768);
111 extern SINTABLE(65536);
114 * Sets up a complex FFT.
115 * @param nbits log2 of the length of the input array
116 * @param inverse if 0 perform the forward transform, if 1 perform the inverse
118 int ff_fft_init(FFTContext
*s
, int nbits
, int inverse
);
119 void ff_fft_permute_c(FFTContext
*s
, FFTComplex
*z
);
120 void ff_fft_calc_c(FFTContext
*s
, FFTComplex
*z
);
122 void ff_fft_init_altivec(FFTContext
*s
);
123 void ff_fft_init_mmx(FFTContext
*s
);
124 void ff_fft_init_arm(FFTContext
*s
);
127 * Do the permutation needed BEFORE calling ff_fft_calc().
129 static inline void ff_fft_permute(FFTContext
*s
, FFTComplex
*z
)
131 s
->fft_permute(s
, z
);
134 * Do a complex FFT with the parameters defined in ff_fft_init(). The
135 * input data must be permuted before. No 1.0/sqrt(n) normalization is done.
137 static inline void ff_fft_calc(FFTContext
*s
, FFTComplex
*z
)
141 void ff_fft_end(FFTContext
*s
);
143 /* MDCT computation */
145 static inline void ff_imdct_calc(FFTContext
*s
, FFTSample
*output
, const FFTSample
*input
)
147 s
->imdct_calc(s
, output
, input
);
149 static inline void ff_imdct_half(FFTContext
*s
, FFTSample
*output
, const FFTSample
*input
)
151 s
->imdct_half(s
, output
, input
);
154 static inline void ff_mdct_calc(FFTContext
*s
, FFTSample
*output
,
155 const FFTSample
*input
)
157 s
->mdct_calc(s
, output
, input
);
161 * Generate a Kaiser-Bessel Derived Window.
162 * @param window pointer to half window
163 * @param alpha determines window shape
164 * @param n size of half window
166 void ff_kbd_window_init(float *window
, float alpha
, int n
);
169 * Generate a sine window.
170 * @param window pointer to half window
171 * @param n size of half window
173 void ff_sine_window_init(float *window
, int n
);
176 * initialize the specified entry of ff_sine_windows
178 void ff_init_ff_sine_windows(int index
);
179 extern SINETABLE( 32);
180 extern SINETABLE( 64);
181 extern SINETABLE( 128);
182 extern SINETABLE( 256);
183 extern SINETABLE( 512);
184 extern SINETABLE(1024);
185 extern SINETABLE(2048);
186 extern SINETABLE(4096);
187 extern SINETABLE_CONST
float * const ff_sine_windows
[13];
189 int ff_mdct_init(FFTContext
*s
, int nbits
, int inverse
, double scale
);
190 void ff_imdct_calc_c(FFTContext
*s
, FFTSample
*output
, const FFTSample
*input
);
191 void ff_imdct_half_c(FFTContext
*s
, FFTSample
*output
, const FFTSample
*input
);
192 void ff_mdct_calc_c(FFTContext
*s
, FFTSample
*output
, const FFTSample
*input
);
193 void ff_mdct_end(FFTContext
*s
);
195 /* Real Discrete Fourier Transform */
197 enum RDFTransformType
{
209 /* pre/post rotation tables */
210 const FFTSample
*tcos
;
211 SINTABLE_CONST FFTSample
*tsin
;
216 * Sets up a real FFT.
217 * @param nbits log2 of the length of the input array
218 * @param trans the type of transform
220 int ff_rdft_init(RDFTContext
*s
, int nbits
, enum RDFTransformType trans
);
221 void ff_rdft_calc(RDFTContext
*s
, FFTSample
*data
);
222 void ff_rdft_end(RDFTContext
*s
);
224 /* Discrete Cosine Transform */
236 * Sets up (Inverse)DCT.
237 * @param nbits log2 of the length of the input array
238 * @param inverse >0 forward transform, <0 inverse transform
240 int ff_dct_init(DCTContext
*s
, int nbits
, int inverse
);
241 void ff_dct_calc(DCTContext
*s
, FFTSample
*data
);
242 void ff_dct_end (DCTContext
*s
);
244 #endif /* AVCODEC_FFT_H */