gzdoom-gles/libraries/timidityplus/timiditypp/fft4g.h
Christoph Oelckers 4fccadff7e - made the Timidity++ backend a library, now that it has no dependencies on GZDoom anymore.
# Conflicts:
#	src/CMakeLists.txt

# Conflicts:
#	src/CMakeLists.txt
2020-01-05 01:21:32 +01:00

16 lines
No EOL
621 B
C++

/*
Copyright(C) 1996-1999 Takuya OOURA
email: ooura@mmm.t.u-tokyo.ac.jp
download: http://momonga.t.u-tokyo.ac.jp/~ooura/fft.html
You may use, copy, modify this code for any purpose and
without fee. You may distribute this ORIGINAL package.
*/
namespace TimidityPlus
{
extern void cdft(int, int, float *, int *, float *);
extern void rdft(int, int, float *, int *, float *);
extern void ddct(int, int, float *, int *, float *);
extern void ddst(int, int, float *, int *, float *);
extern void dfct(int, float *, float *, int *, float *);
extern void dfst(int, float *, float *, int *, float *);
}