Jamoma API  0.6.0.a19
ResamplingLib.cpp
1 /*
2  * ResamplingLib -- A library for audio signal resampling
3  * Extension Class for Jamoma DSP
4  * Copyright © 2010, Timothy Place
5  *
6  * License: This code is licensed under the terms of the "New BSD License"
7  * http://creativecommons.org/licenses/BSD/
8  */
9 
10 #include "TTDSP.h"
11 
12 #include "TTResample.h"
13 #include "TTStaircase.h"
14 
15 
16 extern "C" TT_EXTENSION_EXPORT TTErr TTLoadJamomaExtension_ResamplingLib(void)
17 {
18  TTDSPInit();
19 
20  TTResample::registerClass();
21  TTStaircase::registerClass();
22 
23  return kTTErrNone;
24 }
25 
Jamoma DSP Library.
void TTDSP_EXPORT TTDSPInit(const char *pathToBinaries=NULL)
Initialise the Jamoma DSP library, as well as Jamoma Foundation foundation if needed.
Definition: TTDSP.cpp:30
TTErr
Jamoma Error Codes Enumeration of error codes that might be returned by any of the TTBlue functions a...
Definition: TTBase.h:342
No Error.
Definition: TTBase.h:343