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.

246 lines
6.9KB

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