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
7.0KB

  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. void ff_dct_init_mmx(DCTContext *s);
  106. /**
  107. * Do the permutation needed BEFORE calling ff_fft_calc().
  108. */
  109. static inline void ff_fft_permute(FFTContext *s, FFTComplex *z)
  110. {
  111. s->fft_permute(s, z);
  112. }
  113. /**
  114. * Do a complex FFT with the parameters defined in ff_fft_init(). The
  115. * input data must be permuted before. No 1.0/sqrt(n) normalization is done.
  116. */
  117. static inline void ff_fft_calc(FFTContext *s, FFTComplex *z)
  118. {
  119. s->fft_calc(s, z);
  120. }
  121. void ff_fft_end(FFTContext *s);
  122. /* MDCT computation */
  123. static inline void ff_imdct_calc(FFTContext *s, FFTSample *output, const FFTSample *input)
  124. {
  125. s->imdct_calc(s, output, input);
  126. }
  127. static inline void ff_imdct_half(FFTContext *s, FFTSample *output, const FFTSample *input)
  128. {
  129. s->imdct_half(s, output, input);
  130. }
  131. static inline void ff_mdct_calc(FFTContext *s, FFTSample *output,
  132. const FFTSample *input)
  133. {
  134. s->mdct_calc(s, output, input);
  135. }
  136. /**
  137. * Maximum window size for ff_kbd_window_init.
  138. */
  139. #define FF_KBD_WINDOW_MAX 1024
  140. /**
  141. * Generate a Kaiser-Bessel Derived Window.
  142. * @param window pointer to half window
  143. * @param alpha determines window shape
  144. * @param n size of half window, max FF_KBD_WINDOW_MAX
  145. */
  146. void ff_kbd_window_init(float *window, float alpha, int n);
  147. /**
  148. * Generate a sine window.
  149. * @param window pointer to half window
  150. * @param n size of half window
  151. */
  152. void ff_sine_window_init(float *window, int n);
  153. /**
  154. * initialize the specified entry of ff_sine_windows
  155. */
  156. void ff_init_ff_sine_windows(int index);
  157. extern SINETABLE( 32);
  158. extern SINETABLE( 64);
  159. extern SINETABLE( 128);
  160. extern SINETABLE( 256);
  161. extern SINETABLE( 512);
  162. extern SINETABLE(1024);
  163. extern SINETABLE(2048);
  164. extern SINETABLE(4096);
  165. extern SINETABLE_CONST float * const ff_sine_windows[13];
  166. int ff_mdct_init(FFTContext *s, int nbits, int inverse, double scale);
  167. void ff_imdct_calc_c(FFTContext *s, FFTSample *output, const FFTSample *input);
  168. void ff_imdct_half_c(FFTContext *s, FFTSample *output, const FFTSample *input);
  169. void ff_mdct_calc_c(FFTContext *s, FFTSample *output, const FFTSample *input);
  170. void ff_mdct_end(FFTContext *s);
  171. /* Real Discrete Fourier Transform */
  172. struct RDFTContext {
  173. int nbits;
  174. int inverse;
  175. int sign_convention;
  176. /* pre/post rotation tables */
  177. const FFTSample *tcos;
  178. SINTABLE_CONST FFTSample *tsin;
  179. FFTContext fft;
  180. void (*rdft_calc)(struct RDFTContext *s, FFTSample *z);
  181. };
  182. /**
  183. * Set up a real FFT.
  184. * @param nbits log2 of the length of the input array
  185. * @param trans the type of transform
  186. */
  187. int ff_rdft_init(RDFTContext *s, int nbits, enum RDFTransformType trans);
  188. void ff_rdft_end(RDFTContext *s);
  189. void ff_rdft_init_arm(RDFTContext *s);
  190. static av_always_inline void ff_rdft_calc(RDFTContext *s, FFTSample *data)
  191. {
  192. s->rdft_calc(s, data);
  193. }
  194. /* Discrete Cosine Transform */
  195. struct DCTContext {
  196. int nbits;
  197. int inverse;
  198. RDFTContext rdft;
  199. const float *costab;
  200. FFTSample *csc2;
  201. void (*dct_calc)(struct DCTContext *s, FFTSample *data);
  202. void (*dct32)(FFTSample *out, const FFTSample *in);
  203. };
  204. /**
  205. * Set up DCT.
  206. * @param nbits size of the input array:
  207. * (1 << nbits) for DCT-II, DCT-III and DST-I
  208. * (1 << nbits) + 1 for DCT-I
  209. *
  210. * @note the first element of the input of DST-I is ignored
  211. */
  212. int ff_dct_init(DCTContext *s, int nbits, enum DCTTransformType type);
  213. void ff_dct_calc(DCTContext *s, FFTSample *data);
  214. void ff_dct_end (DCTContext *s);
  215. #endif /* AVCODEC_FFT_H */