vkdoom_m/thirdparty/timidityplus/timiditypp/fft4g.h
Rachael Alexanderson 9f3cb3d92e Squashed 'libraries/ZMusic/' content from commit ac3e232b00
git-subtree-dir: libraries/ZMusic
git-subtree-split: ac3e232b001129c740b7b65196ae0e1b13b82513
2025-07-30 00:24:15 -04: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 *);
}