Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
BitchX
GitHub Repository: BitchX/BitchX1.3
Path: blob/master/dll/amp/audioIO.h
1072 views
1
/* AUSUZ should be the amount of data your audio device will accept after it
2
* has said it is ready to receive data. ie when the device is ready for data it
3
* will accept it without blocking. It must also be a multiple of 128
4
*/
5
6
#ifdef OS_AIX
7
#define AUSIZ 32768
8
#endif
9
10
#ifdef OS_Linux
11
extern int AUSIZ;
12
#endif
13
14
#ifdef OS_BSD
15
#define AUSIZ 32768
16
#endif
17
18
#if defined(OS_IRIX) || defined(OS_IRIX64)
19
#define AUSIZ 32768
20
#endif
21
22
#ifdef OS_HPUX
23
#define AUSIZ 4096
24
#endif
25
26
#ifdef OS_SunOS
27
#define AUSIZ 4096
28
#endif
29
30