9d0ae2fd56
git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@2293 af16638f-c34d-0410-8cfa-b39d5352b314
43 lines
1.3 KiB
C
43 lines
1.3 KiB
C
/********************************************************************
|
|
* *
|
|
* THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE. *
|
|
* USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
|
|
* GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
|
|
* IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
|
|
* *
|
|
* THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001 *
|
|
* by the XIPHOPHORUS Company http://www.xiph.org/ *
|
|
* *
|
|
********************************************************************
|
|
|
|
function: fft transform
|
|
last mod: $Id: smallft.h 283 2004-07-07 13:39:42Z stevek $
|
|
|
|
********************************************************************/
|
|
|
|
#ifndef _V_SMFT_H_
|
|
#define _V_SMFT_H_
|
|
|
|
/*#include "vorbis/codec.h"*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct drft_lookup{
|
|
int n;
|
|
float *trigcache;
|
|
int *splitcache;
|
|
};
|
|
|
|
extern void drft_forward(struct drft_lookup *l,float *data);
|
|
extern void drft_backward(struct drft_lookup *l,float *data);
|
|
extern void drft_init(struct drft_lookup *l,int n);
|
|
extern void drft_clear(struct drft_lookup *l);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|