Blame libcelt/mdct.h

Packit 664db3
/* (C) 2008 Jean-Marc Valin, CSIRO
Packit 664db3
*/
Packit 664db3
/*
Packit 664db3
   Redistribution and use in source and binary forms, with or without
Packit 664db3
   modification, are permitted provided that the following conditions
Packit 664db3
   are met:
Packit 664db3
   
Packit 664db3
   - Redistributions of source code must retain the above copyright
Packit 664db3
   notice, this list of conditions and the following disclaimer.
Packit 664db3
   
Packit 664db3
   - Redistributions in binary form must reproduce the above copyright
Packit 664db3
   notice, this list of conditions and the following disclaimer in the
Packit 664db3
   documentation and/or other materials provided with the distribution.
Packit 664db3
   
Packit 664db3
   - Neither the name of the Xiph.org Foundation nor the names of its
Packit 664db3
   contributors may be used to endorse or promote products derived from
Packit 664db3
   this software without specific prior written permission.
Packit 664db3
   
Packit 664db3
   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit 664db3
   ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit 664db3
   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
Packit 664db3
   A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
Packit 664db3
   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
Packit 664db3
   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
Packit 664db3
   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
Packit 664db3
   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
Packit 664db3
   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
Packit 664db3
   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
Packit 664db3
   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 664db3
*/
Packit 664db3
Packit 664db3
/* This is a simple MDCT implementation that uses a N/4 complex FFT
Packit 664db3
   to do most of the work. It should be relatively straightforward to
Packit 664db3
   plug in pretty much and FFT here.
Packit 664db3
   
Packit 664db3
   This replaces the Vorbis FFT (and uses the exact same API), which 
Packit 664db3
   was a bit too messy and that was ending up duplicating code 
Packit 664db3
   (might as well use the same FFT everywhere).
Packit 664db3
   
Packit 664db3
   The algorithm is similar to (and inspired from) Fabrice Bellard's
Packit 664db3
   MDCT implementation in FFMPEG, but has differences in signs, ordering
Packit 664db3
   and scaling in many places. 
Packit 664db3
*/
Packit 664db3
Packit 664db3
#ifndef MDCT_H
Packit 664db3
#define MDCT_H
Packit 664db3
Packit 664db3
#include "kiss_fft.h"
Packit 664db3
#include "arch.h"
Packit 664db3
Packit 664db3
typedef struct {
Packit 664db3
   int n;
Packit 664db3
   kiss_fft_cfg kfft;
Packit 664db3
   kiss_twiddle_scalar * restrict trig;
Packit 664db3
} mdct_lookup;
Packit 664db3
Packit 664db3
void mdct_init(mdct_lookup *l,int N);
Packit 664db3
void mdct_clear(mdct_lookup *l);
Packit 664db3
Packit 664db3
/** Compute a forward MDCT and scale by 4/N */
Packit 664db3
void mdct_forward(const mdct_lookup *l, kiss_fft_scalar *in, kiss_fft_scalar *out, const celt_word16_t *window, int overlap);
Packit 664db3
Packit 664db3
/** Compute a backward MDCT (no scaling) and performs weighted overlap-add 
Packit 664db3
    (scales implicitly by 1/2) */
Packit 664db3
void mdct_backward(const mdct_lookup *l, kiss_fft_scalar *in, kiss_fft_scalar *out, const celt_word16_t * restrict window, int overlap);
Packit 664db3
Packit 664db3
#endif