00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Rob Bairos,, 00008 * Side Effects Software Inc 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: AU_Constants.h ( Audio Library, C++) 00015 * 00016 * COMMENTS: 00017 * 00018 * Commonly used definitions 00019 */ 00020 00021 00022 #ifndef __AU_Constants__ 00023 #define __AU_Constants__ 00024 00025 #define AU_MAX_CHANNELS 4 00026 #if defined(LINUX) || defined(WIN32) 00027 #define AU_MAX_RATE 44100 00028 #else 00029 #define AU_MAX_RATE 48000 00030 #endif 00031 #define AU_MIN_RATE 4000 00032 00033 #define AU_MIN_SCRUB_FREQUENCY 10 00034 #define AU_MAX_SCRUB_FREQUENCY 100 00035 00036 #endif 00037
1.5.9