1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*
FFTease - A set of Live Spectral Processors
Originally written by Eric Lyon and Christopher Penrose for the Max/MSP platform
Copyright (c)Thomas Grill (xovo@gmx.net)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
*/
#include "main.h"
// Initialization function for xsample library
V lib_setup()
{
post("");
post("-------------------------------------------------------------------");
post("FFTease - A set of Live Spectral Processors");
post("Originally written by Eric Lyon and Christopher Penrose for MAX/MSP");
post("");
post("flext port (version " FFTEASE_VERSION ") provided by Thomas Grill, (C)2003");
post("-------------------------------------------------------------------");
post("");
// call the objects' setup routines
FLEXT_DSP_SETUP(burrow);
FLEXT_DSP_SETUP(cross);
FLEXT_DSP_SETUP(dentist);
FLEXT_DSP_SETUP(disarray);
FLEXT_DSP_SETUP(drown);
FLEXT_DSP_SETUP(ether);
FLEXT_DSP_SETUP(morphine);
FLEXT_DSP_SETUP(scrape);
FLEXT_DSP_SETUP(shapee);
FLEXT_DSP_SETUP(swinger);
FLEXT_DSP_SETUP(taint);
FLEXT_DSP_SETUP(thresher);
FLEXT_DSP_SETUP(vacancy);
FLEXT_DSP_SETUP(xsyn);
/*
FLEXT_DSP_SETUP(pvcompand);
FLEXT_DSP_SETUP(pvoc);
*/
#if FLEXT_SYS == FLEXT_SYS_MAX
finder_addclass((C *)"FFTease",(C *)"burrow~");
finder_addclass((C *)"FFTease",(C *)"cross~");
finder_addclass((C *)"FFTease",(C *)"dentist~");
finder_addclass((C *)"FFTease",(C *)"disarray~");
finder_addclass((C *)"FFTease",(C *)"drown~");
finder_addclass((C *)"FFTease",(C *)"ether~");
finder_addclass((C *)"FFTease",(C *)"morphine~");
finder_addclass((C *)"FFTease",(C *)"scrape~");
finder_addclass((C *)"FFTease",(C *)"shapee~");
finder_addclass((C *)"FFTease",(C *)"swinger~");
finder_addclass((C *)"FFTease",(C *)"taint~");
finder_addclass((C *)"FFTease",(C *)"thresher~");
finder_addclass((C *)"FFTease",(C *)"vacancy~");
finder_addclass((C *)"FFTease",(C *)"xsyn~");
#endif
}
// setup the library
FLEXT_LIB_SETUP(fftease,lib_setup)
|