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.

243 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_init_altivec(FFTContext *s);
  101. void ff_fft_init_mmx(FFTContext *s);
  102. void ff_fft_init_arm(FFTContext *s);
  103. void ff_dct_init_mmx(DCTContext *s);
  104. /**
  105. * Do the permutation needed BEFORE calling ff_fft_calc().
  106. */
  107. static inline void ff_fft_permute(FFTContext *s, FFTComplex *z)
  108. {
  109. s->fft_permute(s, z);
  110. }
  111. /**
  112. * Do a complex FFT with the parameters defined in ff_fft_init(). The
  113. * input data must be permuted before. No 1.0/sqrt(n) normalization is done.
  114. */
  115. static inline void ff_fft_calc(FFTContext *s, FFTComplex *z)
  116. {
  117. s->fft_calc(s, z);
  118. }
  119. void ff_fft_end(FFTContext *s);
  120. /* MDCT computation */
  121. static inline void ff_imdct_calc(FFTContext *s, FFTSample *output, const FFTSample *input)
  122. {
  123. s->imdct_calc(s, output, input);
  124. }
  125. static inline void ff_imdct_half(FFTContext *s, FFTSample *output, const FFTSample *input)
  126. {
  127. s->imdct_half(s, output, input);
  128. }
  129. static inline void ff_mdct_calc(FFTContext *s, FFTSample *output,
  130. const FFTSample *input)
  131. {
  132. s->mdct_calc(s, output, input);
  133. }
  134. /**
  135. * Maximum window size for ff_kbd_window_init.
  136. */
  137. #define FF_KBD_WINDOW_MAX 1024
  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, max FF_KBD_WINDOW_MAX
  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. * Set 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. void (*dct32)(FFTSample *out, const FFTSample *in);
  201. };
  202. /**
  203. * Set up DCT.
  204. * @param nbits size of the input array:
  205. * (1 << nbits) for DCT-II, DCT-III and DST-I
  206. * (1 << nbits) + 1 for DCT-I
  207. *
  208. * @note the first element of the input of DST-I is ignored
  209. */
  210. int ff_dct_init(DCTContext *s, int nbits, enum DCTTransformType type);
  211. void ff_dct_calc(DCTContext *s, FFTSample *data);
  212. void ff_dct_end (DCTContext *s);
  213. #endif /* AVCODEC_FFT_H */