annotate fft.h @ 11391:4c7afa50df6f libavcodec

Give RDFT types more meaningful names
author mru
date Sun, 07 Mar 2010 21:47:44 +0000
parents 4b3da727d832
children 384d803faff4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11370
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
1 /*
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
2 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
3 * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
4 *
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
5 * This file is part of FFmpeg.
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
6 *
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
11 *
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
15 * Lesser General Public License for more details.
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
16 *
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
20 */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
21
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
22 #ifndef AVCODEC_FFT_H
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
23 #define AVCODEC_FFT_H
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
24
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
25 #include <stdint.h>
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
26 #include "config.h"
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
27 #include "libavutil/mem.h"
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
28
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
29 /* FFT computation */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
30
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
31 /* NOTE: soon integer code will be added, so you must use the
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
32 FFTSample type */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
33 typedef float FFTSample;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
34
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
35 typedef struct FFTComplex {
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
36 FFTSample re, im;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
37 } FFTComplex;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
38
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
39 typedef struct FFTContext {
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
40 int nbits;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
41 int inverse;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
42 uint16_t *revtab;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
43 FFTComplex *exptab;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
44 FFTComplex *exptab1; /* only used by SSE code */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
45 FFTComplex *tmp_buf;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
46 int mdct_size; /* size of MDCT (i.e. number of input data * 2) */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
47 int mdct_bits; /* n = 2^nbits */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
48 /* pre/post rotation tables */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
49 FFTSample *tcos;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
50 FFTSample *tsin;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
51 void (*fft_permute)(struct FFTContext *s, FFTComplex *z);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
52 void (*fft_calc)(struct FFTContext *s, FFTComplex *z);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
53 void (*imdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
54 void (*imdct_half)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
55 void (*mdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
56 int split_radix;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
57 int permutation;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
58 #define FF_MDCT_PERM_NONE 0
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
59 #define FF_MDCT_PERM_INTERLEAVE 1
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
60 } FFTContext;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
61
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
62 #if CONFIG_HARDCODED_TABLES
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
63 #define COSTABLE_CONST const
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
64 #define SINTABLE_CONST const
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
65 #define SINETABLE_CONST const
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
66 #else
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
67 #define COSTABLE_CONST
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
68 #define SINTABLE_CONST
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
69 #define SINETABLE_CONST
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
70 #endif
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
71
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
72 #define COSTABLE(size) \
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
73 COSTABLE_CONST DECLARE_ALIGNED(16, FFTSample, ff_cos_##size)[size/2]
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
74 #define SINTABLE(size) \
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
75 SINTABLE_CONST DECLARE_ALIGNED(16, FFTSample, ff_sin_##size)[size/2]
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
76 #define SINETABLE(size) \
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
77 SINETABLE_CONST DECLARE_ALIGNED(16, float, ff_sine_##size)[size]
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
78 extern COSTABLE(16);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
79 extern COSTABLE(32);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
80 extern COSTABLE(64);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
81 extern COSTABLE(128);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
82 extern COSTABLE(256);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
83 extern COSTABLE(512);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
84 extern COSTABLE(1024);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
85 extern COSTABLE(2048);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
86 extern COSTABLE(4096);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
87 extern COSTABLE(8192);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
88 extern COSTABLE(16384);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
89 extern COSTABLE(32768);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
90 extern COSTABLE(65536);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
91 extern COSTABLE_CONST FFTSample* const ff_cos_tabs[17];
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
92
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
93 /**
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
94 * Initializes the cosine table in ff_cos_tabs[index]
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
95 * \param index index in ff_cos_tabs array of the table to initialize
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
96 */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
97 void ff_init_ff_cos_tabs(int index);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
98
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
99 extern SINTABLE(16);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
100 extern SINTABLE(32);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
101 extern SINTABLE(64);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
102 extern SINTABLE(128);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
103 extern SINTABLE(256);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
104 extern SINTABLE(512);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
105 extern SINTABLE(1024);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
106 extern SINTABLE(2048);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
107 extern SINTABLE(4096);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
108 extern SINTABLE(8192);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
109 extern SINTABLE(16384);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
110 extern SINTABLE(32768);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
111 extern SINTABLE(65536);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
112
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
113 /**
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
114 * Sets up a complex FFT.
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
115 * @param nbits log2 of the length of the input array
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
116 * @param inverse if 0 perform the forward transform, if 1 perform the inverse
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
117 */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
118 int ff_fft_init(FFTContext *s, int nbits, int inverse);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
119 void ff_fft_permute_c(FFTContext *s, FFTComplex *z);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
120 void ff_fft_calc_c(FFTContext *s, FFTComplex *z);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
121
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
122 void ff_fft_init_altivec(FFTContext *s);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
123 void ff_fft_init_mmx(FFTContext *s);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
124 void ff_fft_init_arm(FFTContext *s);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
125
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
126 /**
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
127 * Do the permutation needed BEFORE calling ff_fft_calc().
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
128 */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
129 static inline void ff_fft_permute(FFTContext *s, FFTComplex *z)
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
130 {
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
131 s->fft_permute(s, z);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
132 }
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
133 /**
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
134 * Do a complex FFT with the parameters defined in ff_fft_init(). The
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
135 * input data must be permuted before. No 1.0/sqrt(n) normalization is done.
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
136 */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
137 static inline void ff_fft_calc(FFTContext *s, FFTComplex *z)
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
138 {
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
139 s->fft_calc(s, z);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
140 }
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
141 void ff_fft_end(FFTContext *s);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
142
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
143 /* MDCT computation */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
144
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
145 static inline void ff_imdct_calc(FFTContext *s, FFTSample *output, const FFTSample *input)
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
146 {
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
147 s->imdct_calc(s, output, input);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
148 }
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
149 static inline void ff_imdct_half(FFTContext *s, FFTSample *output, const FFTSample *input)
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
150 {
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
151 s->imdct_half(s, output, input);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
152 }
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
153
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
154 static inline void ff_mdct_calc(FFTContext *s, FFTSample *output,
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
155 const FFTSample *input)
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
156 {
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
157 s->mdct_calc(s, output, input);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
158 }
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
159
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
160 /**
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
161 * Generate a Kaiser-Bessel Derived Window.
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
162 * @param window pointer to half window
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
163 * @param alpha determines window shape
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
164 * @param n size of half window
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
165 */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
166 void ff_kbd_window_init(float *window, float alpha, int n);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
167
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
168 /**
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
169 * Generate a sine window.
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
170 * @param window pointer to half window
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
171 * @param n size of half window
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
172 */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
173 void ff_sine_window_init(float *window, int n);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
174
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
175 /**
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
176 * initialize the specified entry of ff_sine_windows
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
177 */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
178 void ff_init_ff_sine_windows(int index);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
179 extern SINETABLE( 32);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
180 extern SINETABLE( 64);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
181 extern SINETABLE( 128);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
182 extern SINETABLE( 256);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
183 extern SINETABLE( 512);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
184 extern SINETABLE(1024);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
185 extern SINETABLE(2048);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
186 extern SINETABLE(4096);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
187 extern SINETABLE_CONST float * const ff_sine_windows[13];
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
188
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
189 int ff_mdct_init(FFTContext *s, int nbits, int inverse, double scale);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
190 void ff_imdct_calc_c(FFTContext *s, FFTSample *output, const FFTSample *input);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
191 void ff_imdct_half_c(FFTContext *s, FFTSample *output, const FFTSample *input);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
192 void ff_mdct_calc_c(FFTContext *s, FFTSample *output, const FFTSample *input);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
193 void ff_mdct_end(FFTContext *s);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
194
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
195 /* Real Discrete Fourier Transform */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
196
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
197 enum RDFTransformType {
11391
4c7afa50df6f Give RDFT types more meaningful names
mru
parents: 11370
diff changeset
198 DFT_R2C,
4c7afa50df6f Give RDFT types more meaningful names
mru
parents: 11370
diff changeset
199 IDFT_C2R,
4c7afa50df6f Give RDFT types more meaningful names
mru
parents: 11370
diff changeset
200 IDFT_R2C,
4c7afa50df6f Give RDFT types more meaningful names
mru
parents: 11370
diff changeset
201 DFT_C2R,
11370
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
202 };
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
203
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
204 typedef struct {
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
205 int nbits;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
206 int inverse;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
207 int sign_convention;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
208
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
209 /* pre/post rotation tables */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
210 const FFTSample *tcos;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
211 SINTABLE_CONST FFTSample *tsin;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
212 FFTContext fft;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
213 } RDFTContext;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
214
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
215 /**
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
216 * Sets up a real FFT.
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
217 * @param nbits log2 of the length of the input array
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
218 * @param trans the type of transform
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
219 */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
220 int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
221 void ff_rdft_calc(RDFTContext *s, FFTSample *data);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
222 void ff_rdft_end(RDFTContext *s);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
223
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
224 /* Discrete Cosine Transform */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
225
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
226 typedef struct {
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
227 int nbits;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
228 int inverse;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
229 FFTSample *data;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
230 RDFTContext rdft;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
231 const float *costab;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
232 FFTSample *csc2;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
233 } DCTContext;
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
234
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
235 /**
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
236 * Sets up (Inverse)DCT.
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
237 * @param nbits log2 of the length of the input array
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
238 * @param inverse >0 forward transform, <0 inverse transform
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
239 */
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
240 int ff_dct_init(DCTContext *s, int nbits, int inverse);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
241 void ff_dct_calc(DCTContext *s, FFTSample *data);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
242 void ff_dct_end (DCTContext *s);
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
243
4b3da727d832 Move FFT parts from dsputil.h to fft.h
mru
parents:
diff changeset
244 #endif /* AVCODEC_FFT_H */