Blame lib/cdda_interface/smallft.h

Packit cb6d3d
/*
Packit cb6d3d
  Copyright (C) 2008 Rocky Bernstein <rocky@gnu.org>
Packit cb6d3d
  Copyright (C) 1998 Monty xiphmont@mit.edu
Packit cb6d3d
Packit cb6d3d
  This program is free software: you can redistribute it and/or modify
Packit cb6d3d
  it under the terms of the GNU General Public License as published by
Packit cb6d3d
  the Free Software Foundation, either version 3 of the License, or
Packit cb6d3d
  (at your option) any later version.
Packit cb6d3d
Packit cb6d3d
  This program is distributed in the hope that it will be useful,
Packit cb6d3d
  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit cb6d3d
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit cb6d3d
  GNU General Public License for more details.
Packit cb6d3d
Packit cb6d3d
  You should have received a copy of the GNU General Public License
Packit cb6d3d
  along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit cb6d3d
*/
Packit cb6d3d
Packit cb6d3d
/******************************************************************
Packit cb6d3d
 * FFT implementation from OggSquish, minus cosine transforms.
Packit cb6d3d
 * Only convenience functions exposed
Packit cb6d3d
 ******************************************************************/
Packit cb6d3d
Packit cb6d3d
extern void fft_forward(int n, float *buf, float *trigcache, int *sp);
Packit cb6d3d
extern void fft_backward(int n, float *buf, float *trigcache, int *sp);
Packit cb6d3d
extern void fft_i(int n, float **trigcache, int **splitcache);