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.

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