fft.h 4.15 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * 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

Mans Rullgard's avatar
Mans Rullgard committed
25 26 27 28
#ifndef CONFIG_FFT_FLOAT
#define CONFIG_FFT_FLOAT 1
#endif

29 30 31
#include <stdint.h>
#include "config.h"
#include "libavutil/mem.h"
Mans Rullgard's avatar
Mans Rullgard committed
32 33 34

#if CONFIG_FFT_FLOAT

35
#include "avfft.h"
36

Mans Rullgard's avatar
Mans Rullgard committed
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
#define FFT_NAME(x) x

typedef float FFTDouble;

#else

#define FFT_NAME(x) x ## _fixed

typedef int16_t FFTSample;
typedef int     FFTDouble;

typedef struct FFTComplex {
    int16_t re, im;
} FFTComplex;

typedef struct FFTContext FFTContext;

#endif /* CONFIG_FFT_FLOAT */

56 57 58 59
typedef struct FFTDComplex {
    FFTDouble re, im;
} FFTDComplex;

60 61
/* FFT computation */

62
struct FFTContext {
63 64 65 66 67
    int nbits;
    int inverse;
    uint16_t *revtab;
    FFTComplex *tmp_buf;
    int mdct_size; /* size of MDCT (i.e. number of input data * 2) */
68
    int mdct_bits; /* n = 2^nbits */
69 70 71
    /* pre/post rotation tables */
    FFTSample *tcos;
    FFTSample *tsin;
72 73 74
    /**
     * Do the permutation needed BEFORE calling fft_calc().
     */
75
    void (*fft_permute)(struct FFTContext *s, FFTComplex *z);
76 77 78 79
    /**
     * 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.
     */
80 81 82 83
    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);
84
    void (*mdct_calcw)(struct FFTContext *s, FFTDouble *output, const FFTSample *input);
85 86 87
    int fft_permutation;
#define FF_FFT_PERM_DEFAULT   0
#define FF_FFT_PERM_SWAP_LSBS 1
88
#define FF_FFT_PERM_AVX       2
89
    int mdct_permutation;
90 91
#define FF_MDCT_PERM_NONE       0
#define FF_MDCT_PERM_INTERLEAVE 1
92
};
93 94 95 96 97 98 99 100

#if CONFIG_HARDCODED_TABLES
#define COSTABLE_CONST const
#else
#define COSTABLE_CONST
#endif

#define COSTABLE(size) \
101
    COSTABLE_CONST DECLARE_ALIGNED(32, FFTSample, FFT_NAME(ff_cos_##size))[size/2]
102

103 104 105 106 107 108 109 110 111 112 113 114 115
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);
Mans Rullgard's avatar
Mans Rullgard committed
116 117 118
extern COSTABLE_CONST FFTSample* const FFT_NAME(ff_cos_tabs)[17];

#define ff_init_ff_cos_tabs FFT_NAME(ff_init_ff_cos_tabs)
119 120

/**
121
 * Initialize the cosine table in ff_cos_tabs[index]
122
 * @param index index in ff_cos_tabs array of the table to initialize
123 124 125
 */
void ff_init_ff_cos_tabs(int index);

Mans Rullgard's avatar
Mans Rullgard committed
126 127 128
#define ff_fft_init FFT_NAME(ff_fft_init)
#define ff_fft_end  FFT_NAME(ff_fft_end)

129
/**
130
 * Set up a complex FFT.
131 132 133 134 135
 * @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);

136
void ff_fft_init_x86(FFTContext *s);
137
void ff_fft_init_arm(FFTContext *s);
138
void ff_fft_init_mips(FFTContext *s);
139
void ff_fft_init_ppc(FFTContext *s);
140

141
void ff_fft_fixed_init_arm(FFTContext *s);
142 143 144

void ff_fft_end(FFTContext *s);

Mans Rullgard's avatar
Mans Rullgard committed
145 146 147
#define ff_mdct_init FFT_NAME(ff_mdct_init)
#define ff_mdct_end  FFT_NAME(ff_mdct_end)

148 149 150 151
int ff_mdct_init(FFTContext *s, int nbits, int inverse, double scale);
void ff_mdct_end(FFTContext *s);

#endif /* AVCODEC_FFT_H */