RTP Audio System
2.0.0
|
00001 // ########################################################################## 00002 // #### #### 00003 // #### RTP Audio Server Project #### 00004 // #### ============================ #### 00005 // #### #### 00006 // #### Fast Fourier Transformation #### 00007 // #### #### 00008 // #### Copyright (C) 1999-2012 by Thomas Dreibholz #### 00009 // #### #### 00010 // #### Contact: #### 00011 // #### EMail: dreibh@iem.uni-due.de #### 00012 // #### WWW: https://www.nntb.no/~dreibh/rtpaudio #### 00013 // #### #### 00014 // #### ---------------------------------------------------------------- #### 00015 // #### #### 00016 // #### This program is free software: you can redistribute it and/or #### 00017 // #### modify it under the terms of the GNU General Public License as #### 00018 // #### published by the Free Software Foundation, either version 3 of #### 00019 // #### the License, or (at your option) any later version. #### 00020 // #### #### 00021 // #### This program is distributed in the hope that it will be useful, #### 00022 // #### but WITHOUT ANY WARRANTY; without even the implied warranty of #### 00023 // #### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #### 00024 // #### GNU General Public License for more details. #### 00025 // #### #### 00026 // #### You should have received a copy of the GNU General Public #### 00027 // #### License along with this program. If not, see #### 00028 // #### <http://www.gnu.org/licenses/>. #### 00029 // #### #### 00030 // ########################################################################## 00031 // $Id: fft.h 1286 2011-12-18 13:43:16Z dreibh $ 00032 00033 00034 #ifndef FFT_H 00035 #define FFT_H 00036 00037 00038 #include "tdsystem.h" 00039 #include "audiowriterinterface.h" 00040 00041 00049 class FastFourierTransformation { 00050 // ====== Constructor/Destructor ========================================= 00051 public: 00055 FastFourierTransformation(const integer fftlen); 00056 00060 ~FastFourierTransformation(); 00061 00062 00063 // ====== FFT functions ================================================== 00069 void fft(int16* buffer); 00070 00074 integer* getBitReversed(); 00075 00076 00077 // ====== Private data =================================================== 00078 private: 00079 integer* BitReversed; 00080 int16* SinTable; 00081 integer Points; 00082 00083 int16 *A,*B; 00084 int16 *sptr; 00085 int16 *endptr1,*endptr2; 00086 integer *br1,*br2; 00087 integer HRplus,HRminus,HIplus,HIminus; 00088 }; 00089 00090 00091 #endif