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.

238 lines
6.7KB

  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 *exptab;
  33. FFTComplex *exptab1; /* only used by SSE code */
  34. FFTComplex *tmp_buf;
  35. int mdct_size; /* size of MDCT (i.e. number of input data * 2) */
  36. int mdct_bits; /* n = 2^nbits */
  37. /* pre/post rotation tables */
  38. FFTSample *tcos;
  39. FFTSample *tsin;
  40. void (*fft_permute)(struct FFTContext *s, FFTComplex *z);
  41. void (*fft_calc)(struct FFTContext *s, FFTComplex *z);
  42. void (*imdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
  43. void (*imdct_half)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
  44. void (*mdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
  45. int split_radix;
  46. int 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. * Initializes 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. * Sets 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_permute_c(FFTContext *s, FFTComplex *z);
  104. void ff_fft_calc_c(FFTContext *s, FFTComplex *z);
  105. void ff_fft_init_altivec(FFTContext *s);
  106. void ff_fft_init_mmx(FFTContext *s);
  107. void ff_fft_init_arm(FFTContext *s);
  108. /**
  109. * Do the permutation needed BEFORE calling ff_fft_calc().
  110. */
  111. static inline void ff_fft_permute(FFTContext *s, FFTComplex *z)
  112. {
  113. s->fft_permute(s, z);
  114. }
  115. /**
  116. * Do a complex FFT with the parameters defined in ff_fft_init(). The
  117. * input data must be permuted before. No 1.0/sqrt(n) normalization is done.
  118. */
  119. static inline void ff_fft_calc(FFTContext *s, FFTComplex *z)
  120. {
  121. s->fft_calc(s, z);
  122. }
  123. void ff_fft_end(FFTContext *s);
  124. /* MDCT computation */
  125. static inline void ff_imdct_calc(FFTContext *s, FFTSample *output, const FFTSample *input)
  126. {
  127. s->imdct_calc(s, output, input);
  128. }
  129. static inline void ff_imdct_half(FFTContext *s, FFTSample *output, const FFTSample *input)
  130. {
  131. s->imdct_half(s, output, input);
  132. }
  133. static inline void ff_mdct_calc(FFTContext *s, FFTSample *output,
  134. const FFTSample *input)
  135. {
  136. s->mdct_calc(s, output, input);
  137. }
  138. /**
  139. * Generate a Kaiser-Bessel Derived Window.
  140. * @param window pointer to half window
  141. * @param alpha determines window shape
  142. * @param n size of half window
  143. */
  144. void ff_kbd_window_init(float *window, float alpha, int n);
  145. /**
  146. * Generate a sine window.
  147. * @param window pointer to half window
  148. * @param n size of half window
  149. */
  150. void ff_sine_window_init(float *window, int n);
  151. /**
  152. * initialize the specified entry of ff_sine_windows
  153. */
  154. void ff_init_ff_sine_windows(int index);
  155. extern SINETABLE( 32);
  156. extern SINETABLE( 64);
  157. extern SINETABLE( 128);
  158. extern SINETABLE( 256);
  159. extern SINETABLE( 512);
  160. extern SINETABLE(1024);
  161. extern SINETABLE(2048);
  162. extern SINETABLE(4096);
  163. extern SINETABLE_CONST float * const ff_sine_windows[13];
  164. int ff_mdct_init(FFTContext *s, int nbits, int inverse, double scale);
  165. void ff_imdct_calc_c(FFTContext *s, FFTSample *output, const FFTSample *input);
  166. void ff_imdct_half_c(FFTContext *s, FFTSample *output, const FFTSample *input);
  167. void ff_mdct_calc_c(FFTContext *s, FFTSample *output, const FFTSample *input);
  168. void ff_mdct_end(FFTContext *s);
  169. /* Real Discrete Fourier Transform */
  170. struct RDFTContext {
  171. int nbits;
  172. int inverse;
  173. int sign_convention;
  174. /* pre/post rotation tables */
  175. const FFTSample *tcos;
  176. SINTABLE_CONST FFTSample *tsin;
  177. FFTContext fft;
  178. void (*rdft_calc)(struct RDFTContext *s, FFTSample *z);
  179. };
  180. /**
  181. * Sets up a real FFT.
  182. * @param nbits log2 of the length of the input array
  183. * @param trans the type of transform
  184. */
  185. int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans);
  186. void ff_rdft_end(RDFTContext *s);
  187. void ff_rdft_init_arm(RDFTContext *s);
  188. static av_always_inline void ff_rdft_calc(RDFTContext *s, FFTSample *data)
  189. {
  190. s->rdft_calc(s, data);
  191. }
  192. /* Discrete Cosine Transform */
  193. struct DCTContext {
  194. int nbits;
  195. int inverse;
  196. RDFTContext rdft;
  197. const float *costab;
  198. FFTSample *csc2;
  199. void (*dct_calc)(struct DCTContext *s, FFTSample *data);
  200. };
  201. /**
  202. * Sets up (Inverse)DCT.
  203. * @param nbits log2 of the length of the input array
  204. * @param inverse >0 forward transform, <0 inverse transform
  205. */
  206. int ff_dct_init(DCTContext *s, int nbits, int inverse);
  207. void ff_dct_calc(DCTContext *s, FFTSample *data);
  208. void ff_dct_end (DCTContext *s);
  209. #endif /* AVCODEC_FFT_H */