FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
fft.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
3  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21 
22 #ifndef AVCODEC_FFT_H
23 #define AVCODEC_FFT_H
24 
25 #ifndef FFT_FLOAT
26 #define FFT_FLOAT 1
27 #endif
28 
29 #ifndef FFT_FIXED_32
30 #define FFT_FIXED_32 0
31 #endif
32 
33 #include <stdint.h>
34 #include "config.h"
35 #include "libavutil/mem.h"
36 
37 #if FFT_FLOAT
38 
39 #include "avfft.h"
40 
41 #define FFT_NAME(x) x
42 
43 typedef float FFTDouble;
44 
45 #else
46 
47 #if FFT_FIXED_32
48 
49 #define Q31(x) (int)((x)*2147483648.0 + 0.5)
50 #define FFT_NAME(x) x ## _fixed_32
51 
52 typedef int32_t FFTSample;
53 
54 #else /* FFT_FIXED_32 */
55 
56 #define FFT_NAME(x) x ## _fixed
57 
58 typedef int16_t FFTSample;
59 
60 #endif /* FFT_FIXED_32 */
61 
62 typedef struct FFTComplex {
63  FFTSample re, im;
64 } FFTComplex;
65 
66 typedef int FFTDouble;
67 typedef struct FFTContext FFTContext;
68 
69 #endif /* FFT_FLOAT */
70 
71 typedef struct FFTDComplex {
73 } FFTDComplex;
74 
75 /* FFT computation */
76 
81 };
82 
86 };
87 
88 struct FFTContext {
89  int nbits;
90  int inverse;
91  uint16_t *revtab;
93  int mdct_size; /* size of MDCT (i.e. number of input data * 2) */
94  int mdct_bits; /* n = 2^nbits */
95  /* pre/post rotation tables */
98  /**
99  * Do the permutation needed BEFORE calling fft_calc().
100  */
102  /**
103  * Do a complex FFT with the parameters defined in ff_fft_init(). The
104  * input data must be permuted before. No 1.0/sqrt(n) normalization is done.
105  */
107  void (*imdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
108  void (*imdct_half)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
109  void (*mdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
110  void (*mdct_calcw)(struct FFTContext *s, FFTDouble *output, const FFTSample *input);
113 };
114 
115 #if CONFIG_HARDCODED_TABLES
116 #define COSTABLE_CONST const
117 #else
118 #define COSTABLE_CONST
119 #endif
120 
121 #define COSTABLE(size) \
122  COSTABLE_CONST DECLARE_ALIGNED(32, FFTSample, FFT_NAME(ff_cos_##size))[size/2]
123 
124 extern COSTABLE(16);
125 extern COSTABLE(32);
126 extern COSTABLE(64);
127 extern COSTABLE(128);
128 extern COSTABLE(256);
129 extern COSTABLE(512);
130 extern COSTABLE(1024);
131 extern COSTABLE(2048);
132 extern COSTABLE(4096);
133 extern COSTABLE(8192);
134 extern COSTABLE(16384);
135 extern COSTABLE(32768);
136 extern COSTABLE(65536);
137 extern COSTABLE_CONST FFTSample* const FFT_NAME(ff_cos_tabs)[17];
138 
139 #define ff_init_ff_cos_tabs FFT_NAME(ff_init_ff_cos_tabs)
140 
141 /**
142  * Initialize the cosine table in ff_cos_tabs[index]
143  * @param index index in ff_cos_tabs array of the table to initialize
144  */
145 void ff_init_ff_cos_tabs(int index);
146 
147 #define ff_fft_init FFT_NAME(ff_fft_init)
148 #define ff_fft_end FFT_NAME(ff_fft_end)
149 
150 /**
151  * Set up a complex FFT.
152  * @param nbits log2 of the length of the input array
153  * @param inverse if 0 perform the forward transform, if 1 perform the inverse
154  */
155 int ff_fft_init(FFTContext *s, int nbits, int inverse);
156 
162 
164 
165 void ff_fft_end(FFTContext *s);
166 
167 #define ff_mdct_init FFT_NAME(ff_mdct_init)
168 #define ff_mdct_end FFT_NAME(ff_mdct_end)
169 
170 int ff_mdct_init(FFTContext *s, int nbits, int inverse, double scale);
171 void ff_mdct_end(FFTContext *s);
172 
173 #endif /* AVCODEC_FFT_H */
float FFTDouble
Definition: fft.h:43
const char * s
Definition: avisynth_c.h:631
mdct_permutation_type
Definition: fft.h:83
void(* mdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input)
Definition: fft.h:109
memory handling functions
void(* fft_permute)(struct FFTContext *s, FFTComplex *z)
Do the permutation needed BEFORE calling fft_calc().
Definition: fft.h:101
void ff_fft_init_arm(FFTContext *s)
Definition: fft_init_arm.c:39
FFTSample re
Definition: avfft.h:38
#define COSTABLE(size)
Definition: fft.h:121
void ff_fft_init_ppc(FFTContext *s)
Definition: fft_init.c:152
FFTDouble re
Definition: fft.h:72
#define FFT_NAME(x)
Definition: fft.h:41
#define ff_mdct_init
Definition: fft.h:167
float FFTSample
Definition: avfft.h:35
void(* imdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input)
Definition: fft.h:107
void ff_fft_fixed_init_arm(FFTContext *s)
Definition: fft.h:88
FFTSample * tsin
Definition: fft.h:97
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
int nbits
Definition: fft.h:89
#define ff_fft_init
Definition: fft.h:147
int inverse
Definition: fft.h:90
int32_t
enum fft_permutation_type fft_permutation
Definition: fft.h:111
FFT functions.
void(* imdct_half)(struct FFTContext *s, FFTSample *output, const FFTSample *input)
Definition: fft.h:108
int index
Definition: gxfenc.c:89
int mdct_bits
Definition: fft.h:94
fft_permutation_type
Definition: fft.h:77
#define ff_init_ff_cos_tabs
Definition: fft.h:139
void ff_fft_init_aarch64(FFTContext *s)
FFTSample im
Definition: avfft.h:38
#define ff_mdct_end
Definition: fft.h:168
#define COSTABLE_CONST
Definition: fft.h:118
#define ff_fft_end
Definition: fft.h:148
FFTSample * tcos
Definition: fft.h:96
void(* fft_calc)(struct FFTContext *s, FFTComplex *z)
Do a complex FFT with the parameters defined in ff_fft_init().
Definition: fft.h:106
void ff_fft_init_mips(FFTContext *s)
FFT transform.
Definition: fft_mips.c:499
FFTDouble im
Definition: fft.h:72
uint16_t * revtab
Definition: fft.h:91
static uint32_t inverse(uint32_t v)
find multiplicative inverse modulo 2 ^ 32
Definition: asfcrypt.c:35
int mdct_size
Definition: fft.h:93
enum mdct_permutation_type mdct_permutation
Definition: fft.h:112
void(* mdct_calcw)(struct FFTContext *s, FFTDouble *output, const FFTSample *input)
Definition: fft.h:110
void ff_fft_init_x86(FFTContext *s)
Definition: fft_init.c:25
FFTComplex * tmp_buf
Definition: fft.h:92