HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AU_Defines.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: AU_Constants.h ( Audio Library, C++)
7  *
8  * COMMENTS:
9  *
10  * Commonly used definitions
11  */
12 
13 
14 #ifndef __AU_Constants__
15 #define __AU_Constants__
16 
17 #define AU_MAX_CHANNELS 4
18 #if defined(LINUX) || defined(WIN32)
19 static const int AU_MAX_RATE = 44100;
20 #else
21 static const int AU_MAX_RATE = 48000;
22 #endif
23 static const int AU_MIN_RATE = 4000;
24 
25 #define AU_MIN_SCRUB_FREQUENCY 1
26 #define AU_MAX_SCRUB_FREQUENCY 10000
27 
28 #endif
29