mdct15.h 1.83 KB
Newer Older
1
/*
2 3
 * Copyright (c) 2017 Rostislav Pehlivanov <atomnuker@gmail.com>
 *
4
 * This file is part of FFmpeg.
5
 *
6
 * FFmpeg is free software; you can redistribute it and/or
7 8 9 10
 * 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.
 *
11
 * FFmpeg is distributed in the hope that it will be useful,
12 13 14 15 16
 * 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
17
 * License along with FFmpeg; if not, write to the Free Software
18 19 20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

21 22
#ifndef AVCODEC_MDCT15_H
#define AVCODEC_MDCT15_H
23 24 25

#include <stddef.h>

26
#include "fft.h"
27

28
typedef struct MDCT15Context {
29 30 31
    int fft_n;
    int len2;
    int len4;
32
    int inverse;
33 34 35 36
    int *pfa_prereindex;
    int *pfa_postreindex;

    FFTContext ptwo_fft;
37 38 39
    FFTComplex *tmp;
    FFTComplex *twiddle_exptab;

40
    DECLARE_ALIGNED(32, FFTComplex, exptab)[64];
41

42 43 44 45
    /* 15-point FFT */
    void (*fft15)(FFTComplex *out, FFTComplex *in, FFTComplex *exptab, ptrdiff_t stride);

    /* Calculate a full 2N -> N MDCT */
46 47
    void (*mdct)(struct MDCT15Context *s, float *dst, const float *src, ptrdiff_t stride);

48
    /* Calculate the middle half of the iMDCT */
49
    void (*imdct_half)(struct MDCT15Context *s, float *dst, const float *src,
50
                       ptrdiff_t stride);
51
} MDCT15Context;
52

53
/* Init an (i)MDCT of the length 2 * 15 * (2^N) */
54 55
int ff_mdct15_init(MDCT15Context **ps, int inverse, int N, double scale);
void ff_mdct15_uninit(MDCT15Context **ps);
56

57 58
void ff_mdct15_init_x86(MDCT15Context *s);

59
#endif /* AVCODEC_MDCT15_H */