FFT: Prevent user from attempting hops smaller than SC's block size
[supercollider.git] / server / plugins / FFT2InterfaceTable.cpp
blob5afdedbb0eeed64edbf1887b02ca162c59f00f86
1 /*
2 SuperCollider real time audio synthesis system
3 Copyright (c) 2002 James McCartney. All rights reserved.
4 http://www.audiosynth.com
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 //third party Phase Vocoder UGens
23 #include "FFT_UGens.h"
25 InterfaceTable *ft;
27 //these are defined in the relevant files
28 extern void initConvolution(InterfaceTable *);
29 extern void initPV_ThirdParty(InterfaceTable *);
30 extern void initFeatureDetectors(InterfaceTable *it);
32 PluginLoad(PV_ThirdParty)
34 ft= inTable;
36 initConvolution(inTable);
37 initPV_ThirdParty(inTable);
38 initFeatureDetectors(inTable);