Files
FFmpeg/libavcodec/imdct15.h
T

58 lines
1.5 KiB
C
Raw Normal View History

2014-04-28 17:56:43 +02:00
/*
* This file is part of FFmpeg.
2014-04-28 17:56:43 +02:00
*
* FFmpeg is free software; you can redistribute it and/or
2014-04-28 17:56:43 +02:00
* 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,
2014-04-28 17:56:43 +02:00
* 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
2014-04-28 17:56:43 +02:00
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef AVCODEC_IMDCT15_H
#define AVCODEC_IMDCT15_H
2014-04-28 17:56:43 +02:00
#include <stddef.h>
#include "avfft.h"
typedef struct IMDCT15Context {
2014-04-28 17:56:43 +02:00
int fft_n;
int len2;
int len4;
FFTComplex *tmp;
FFTComplex *twiddle_exptab;
FFTComplex *exptab[6];
/**
* Calculate the middle half of the iMDCT
*/
void (*imdct_half)(struct IMDCT15Context *s, float *dst, const float *src,
2014-04-28 17:56:43 +02:00
ptrdiff_t src_stride, float scale);
} IMDCT15Context;
2014-04-28 17:56:43 +02:00
/**
* Init an iMDCT of the length 2 * 15 * (2^N)
*/
int ff_imdct15_init(IMDCT15Context **s, int N);
2014-04-28 17:56:43 +02:00
/**
* Free an iMDCT.
*/
void ff_imdct15_uninit(IMDCT15Context **s);
2014-04-28 17:56:43 +02:00
void ff_imdct15_init_aarch64(IMDCT15Context *s);
2014-04-28 17:56:43 +02:00
#endif /* AVCODEC_IMDCT15_H */