You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

245 lines
6.8KB

  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. #ifndef AVCODEC_FFT_H
  22. #define AVCODEC_FFT_H
  23. #include <stdint.h>
  24. #include "config.h"
  25. #include "libavutil/mem.h"
  26. /* FFT computation */
  27. /* NOTE: soon integer code will be added, so you must use the
  28. FFTSample type */
  29. typedef float FFTSample;
  30. typedef struct FFTComplex {
  31. FFTSample re, im;
  32. } FFTComplex;
  33. typedef struct FFTContext {
  34. int nbits;
  35. int inverse;
  36. uint16_t *revtab;
  37. FFTComplex *exptab;
  38. FFTComplex *exptab1; /* only used by SSE code */
  39. FFTComplex *tmp_buf;
  40. int mdct_size; /* size of MDCT (i.e. number of input data * 2) */
  41. int mdct_bits; /* n = 2^nbits */
  42. /* pre/post rotation tables */
  43. FFTSample *tcos;
  44. FFTSample *tsin;
  45. void (*fft_permute)(struct FFTContext *s, FFTComplex *z);
  46. void (*fft_calc)(struct FFTContext *s, FFTComplex *z);
  47. void (*imdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
  48. void (*imdct_half)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
  49. void (*mdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
  50. int split_radix;
  51. int permutation;
  52. #define FF_MDCT_PERM_NONE 0
  53. #define FF_MDCT_PERM_INTERLEAVE 1
  54. } FFTContext;
  55. #if CONFIG_HARDCODED_TABLES
  56. #define COSTABLE_CONST const
  57. #define SINTABLE_CONST const
  58. #define SINETABLE_CONST const
  59. #else
  60. #define COSTABLE_CONST
  61. #define SINTABLE_CONST
  62. #define SINETABLE_CONST
  63. #endif
  64. #define COSTABLE(size) \
  65. COSTABLE_CONST DECLARE_ALIGNED(16, FFTSample, ff_cos_##size)[size/2]
  66. #define SINTABLE(size) \
  67. SINTABLE_CONST DECLARE_ALIGNED(16, FFTSample, ff_sin_##size)[size/2]
  68. #define SINETABLE(size) \
  69. SINETABLE_CONST DECLARE_ALIGNED(16, float, ff_sine_##size)[size]
  70. extern COSTABLE(16);
  71. extern COSTABLE(32);
  72. extern COSTABLE(64);
  73. extern COSTABLE(128);
  74. extern COSTABLE(256);
  75. extern COSTABLE(512);
  76. extern COSTABLE(1024);
  77. extern COSTABLE(2048);
  78. extern COSTABLE(4096);
  79. extern COSTABLE(8192);
  80. extern COSTABLE(16384);
  81. extern COSTABLE(32768);
  82. extern COSTABLE(65536);
  83. extern COSTABLE_CONST FFTSample* const ff_cos_tabs[17];
  84. /**
  85. * Initializes the cosine table in ff_cos_tabs[index]
  86. * \param index index in ff_cos_tabs array of the table to initialize
  87. */
  88. void ff_init_ff_cos_tabs(int index);
  89. extern SINTABLE(16);
  90. extern SINTABLE(32);
  91. extern SINTABLE(64);
  92. extern SINTABLE(128);
  93. extern SINTABLE(256);
  94. extern SINTABLE(512);
  95. extern SINTABLE(1024);
  96. extern SINTABLE(2048);
  97. extern SINTABLE(4096);
  98. extern SINTABLE(8192);
  99. extern SINTABLE(16384);
  100. extern SINTABLE(32768);
  101. extern SINTABLE(65536);
  102. /**
  103. * Sets up a complex FFT.
  104. * @param nbits log2 of the length of the input array
  105. * @param inverse if 0 perform the forward transform, if 1 perform the inverse
  106. */
  107. int ff_fft_init(FFTContext *s, int nbits, int inverse);
  108. void ff_fft_permute_c(FFTContext *s, FFTComplex *z);
  109. void ff_fft_calc_c(FFTContext *s, FFTComplex *z);
  110. void ff_fft_init_altivec(FFTContext *s);
  111. void ff_fft_init_mmx(FFTContext *s);
  112. void ff_fft_init_arm(FFTContext *s);
  113. /**
  114. * Do the permutation needed BEFORE calling ff_fft_calc().
  115. */
  116. static inline void ff_fft_permute(FFTContext *s, FFTComplex *z)
  117. {
  118. s->fft_permute(s, z);
  119. }
  120. /**
  121. * Do a complex FFT with the parameters defined in ff_fft_init(). The
  122. * input data must be permuted before. No 1.0/sqrt(n) normalization is done.
  123. */
  124. static inline void ff_fft_calc(FFTContext *s, FFTComplex *z)
  125. {
  126. s->fft_calc(s, z);
  127. }
  128. void ff_fft_end(FFTContext *s);
  129. /* MDCT computation */
  130. static inline void ff_imdct_calc(FFTContext *s, FFTSample *output, const FFTSample *input)
  131. {
  132. s->imdct_calc(s, output, input);
  133. }
  134. static inline void ff_imdct_half(FFTContext *s, FFTSample *output, const FFTSample *input)
  135. {
  136. s->imdct_half(s, output, input);
  137. }
  138. static inline void ff_mdct_calc(FFTContext *s, FFTSample *output,
  139. const FFTSample *input)
  140. {
  141. s->mdct_calc(s, output, input);
  142. }
  143. /**
  144. * Generate a Kaiser-Bessel Derived Window.
  145. * @param window pointer to half window
  146. * @param alpha determines window shape
  147. * @param n size of half window
  148. */
  149. void ff_kbd_window_init(float *window, float alpha, int n);
  150. /**
  151. * Generate a sine window.
  152. * @param window pointer to half window
  153. * @param n size of half window
  154. */
  155. void ff_sine_window_init(float *window, int n);
  156. /**
  157. * initialize the specified entry of ff_sine_windows
  158. */
  159. void ff_init_ff_sine_windows(int index);
  160. extern SINETABLE( 32);
  161. extern SINETABLE( 64);
  162. extern SINETABLE( 128);
  163. extern SINETABLE( 256);
  164. extern SINETABLE( 512);
  165. extern SINETABLE(1024);
  166. extern SINETABLE(2048);
  167. extern SINETABLE(4096);
  168. extern SINETABLE_CONST float * const ff_sine_windows[13];
  169. int ff_mdct_init(FFTContext *s, int nbits, int inverse, double scale);
  170. void ff_imdct_calc_c(FFTContext *s, FFTSample *output, const FFTSample *input);
  171. void ff_imdct_half_c(FFTContext *s, FFTSample *output, const FFTSample *input);
  172. void ff_mdct_calc_c(FFTContext *s, FFTSample *output, const FFTSample *input);
  173. void ff_mdct_end(FFTContext *s);
  174. /* Real Discrete Fourier Transform */
  175. enum RDFTransformType {
  176. RDFT,
  177. IRDFT,
  178. RIDFT,
  179. IRIDFT,
  180. };
  181. typedef struct {
  182. int nbits;
  183. int inverse;
  184. int sign_convention;
  185. /* pre/post rotation tables */
  186. const FFTSample *tcos;
  187. SINTABLE_CONST FFTSample *tsin;
  188. FFTContext fft;
  189. } RDFTContext;
  190. /**
  191. * Sets up a real FFT.
  192. * @param nbits log2 of the length of the input array
  193. * @param trans the type of transform
  194. */
  195. int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans);
  196. void ff_rdft_calc(RDFTContext *s, FFTSample *data);
  197. void ff_rdft_end(RDFTContext *s);
  198. /* Discrete Cosine Transform */
  199. typedef struct {
  200. int nbits;
  201. int inverse;
  202. FFTSample *data;
  203. RDFTContext rdft;
  204. const float *costab;
  205. FFTSample *csc2;
  206. } DCTContext;
  207. /**
  208. * Sets up (Inverse)DCT.
  209. * @param nbits log2 of the length of the input array
  210. * @param inverse >0 forward transform, <0 inverse transform
  211. */
  212. int ff_dct_init(DCTContext *s, int nbits, int inverse);
  213. void ff_dct_calc(DCTContext *s, FFTSample *data);
  214. void ff_dct_end (DCTContext *s);
  215. #endif /* AVCODEC_FFT_H */