libavcodec/fft.h
1429224b
 /*
  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef AVCODEC_FFT_H
 #define AVCODEC_FFT_H
 
794fcf79
 #ifndef FFT_FLOAT
 #define FFT_FLOAT 1
7087ce08
 #endif
 
99b6357f
 #ifndef FFT_FIXED_32
 #define FFT_FIXED_32 0
18d7074b
 #endif
 
1429224b
 #include <stdint.h>
 #include "config.h"
 #include "libavutil/mem.h"
7087ce08
 
794fcf79
 #if FFT_FLOAT
7087ce08
 
c7094831
 #include "avfft.h"
1429224b
 
7087ce08
 #define FFT_NAME(x) x
 
 typedef float FFTDouble;
 
 #else
 
99b6357f
 #if FFT_FIXED_32
18d7074b
 
 #define Q31(x) (int)((x)*2147483648.0 + 0.5)
 #define FFT_NAME(x) x ## _fixed_32
 
 typedef int32_t FFTSample;
 
99b6357f
 #else /* FFT_FIXED_32 */
18d7074b
 
7087ce08
 #define FFT_NAME(x) x ## _fixed
 
 typedef int16_t FFTSample;
18d7074b
 
99b6357f
 #endif /* FFT_FIXED_32 */
7087ce08
 
 typedef struct FFTComplex {
18d7074b
     FFTSample re, im;
7087ce08
 } FFTComplex;
 
18d7074b
 typedef int    FFTDouble;
7087ce08
 typedef struct FFTContext FFTContext;
 
794fcf79
 #endif /* FFT_FLOAT */
7087ce08
 
bc154882
 typedef struct FFTDComplex {
     FFTDouble re, im;
 } FFTDComplex;
 
1429224b
 /* FFT computation */
 
c7094831
 struct FFTContext {
1429224b
     int nbits;
     int inverse;
     uint16_t *revtab;
     FFTComplex *tmp_buf;
     int mdct_size; /* size of MDCT (i.e. number of input data * 2) */
c36b2c01
     int mdct_bits; /* n = 2^nbits */
1429224b
     /* pre/post rotation tables */
     FFTSample *tcos;
     FFTSample *tsin;
26f548bb
     /**
      * Do the permutation needed BEFORE calling fft_calc().
      */
1429224b
     void (*fft_permute)(struct FFTContext *s, FFTComplex *z);
26f548bb
     /**
      * Do a complex FFT with the parameters defined in ff_fft_init(). The
      * input data must be permuted before. No 1.0/sqrt(n) normalization is done.
      */
1429224b
     void (*fft_calc)(struct FFTContext *s, FFTComplex *z);
     void (*imdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
     void (*imdct_half)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
     void (*mdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input);
bc154882
     void (*mdct_calcw)(struct FFTContext *s, FFTDouble *output, const FFTSample *input);
11ab1e40
     int fft_permutation;
 #define FF_FFT_PERM_DEFAULT   0
 #define FF_FFT_PERM_SWAP_LSBS 1
9d35fa52
 #define FF_FFT_PERM_AVX       2
11ab1e40
     int mdct_permutation;
1429224b
 #define FF_MDCT_PERM_NONE       0
 #define FF_MDCT_PERM_INTERLEAVE 1
c7094831
 };
1429224b
 
 #if CONFIG_HARDCODED_TABLES
 #define COSTABLE_CONST const
 #else
 #define COSTABLE_CONST
 #endif
 
 #define COSTABLE(size) \
9d35fa52
     COSTABLE_CONST DECLARE_ALIGNED(32, FFTSample, FFT_NAME(ff_cos_##size))[size/2]
4538729a
 
1429224b
 extern COSTABLE(16);
 extern COSTABLE(32);
 extern COSTABLE(64);
 extern COSTABLE(128);
 extern COSTABLE(256);
 extern COSTABLE(512);
 extern COSTABLE(1024);
 extern COSTABLE(2048);
 extern COSTABLE(4096);
 extern COSTABLE(8192);
 extern COSTABLE(16384);
 extern COSTABLE(32768);
 extern COSTABLE(65536);
7087ce08
 extern COSTABLE_CONST FFTSample* const FFT_NAME(ff_cos_tabs)[17];
 
 #define ff_init_ff_cos_tabs FFT_NAME(ff_init_ff_cos_tabs)
1429224b
 
 /**
49bd8e4b
  * Initialize the cosine table in ff_cos_tabs[index]
adbfc605
  * @param index index in ff_cos_tabs array of the table to initialize
1429224b
  */
 void ff_init_ff_cos_tabs(int index);
 
7087ce08
 #define ff_fft_init FFT_NAME(ff_fft_init)
 #define ff_fft_end  FFT_NAME(ff_fft_end)
 
1429224b
 /**
49bd8e4b
  * Set up a complex FFT.
1429224b
  * @param nbits           log2 of the length of the input array
  * @param inverse         if 0 perform the forward transform, if 1 perform the inverse
  */
 int ff_fft_init(FFTContext *s, int nbits, int inverse);
 
f101eab1
 void ff_fft_init_x86(FFTContext *s);
1429224b
 void ff_fft_init_arm(FFTContext *s);
b3fdfc8c
 void ff_fft_init_mips(FFTContext *s);
38282149
 void ff_fft_init_ppc(FFTContext *s);
42b9150b
 
dba98529
 void ff_fft_fixed_init_arm(FFTContext *s);
1429224b
 
 void ff_fft_end(FFTContext *s);
 
7087ce08
 #define ff_mdct_init FFT_NAME(ff_mdct_init)
 #define ff_mdct_end  FFT_NAME(ff_mdct_end)
 
1429224b
 int ff_mdct_init(FFTContext *s, int nbits, int inverse, double scale);
 void ff_mdct_end(FFTContext *s);
 
 #endif /* AVCODEC_FFT_H */