summaryrefslogtreecommitdiffstats
path: root/mpeglib/lib/util/audio/audioIO.cpp
blob: f2a1f7cb46619f09b44ca215da8987e891e56eaa (plain)
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



#ifdef HAVE_CONFIG_H
#include "config.h"
#endif


#ifdef SDL_WRAPPER

  #include "audioIO_SDL.cpp"

//
// If native sound is defined compiled for that
//

#else


#ifdef OS_AIX 
  #include "audioIO_AIX.cpp"
#endif

#ifdef OS_Linux
  #include "audioIO_Linux.cpp"
#endif

#ifdef OS_BSD
#ifdef __OpenBSD__
  #include "audioIO_sndio.cpp"
#else
  #include "audioIO_Linux.cpp"
#endif
#endif

#if defined(OS_IRIX) || defined(OS_IRIX64)
  #include "audioIO_IRIX.cpp"
#endif

#ifdef OS_HPUX
  #include "audioIO_HPUX.cpp"
#endif

#ifdef OS_SunOS
  #include "audioIO_SunOS.cpp"
#endif

#ifdef __BEOS__
  #include "audioIO_BeOS.cpp"
#endif


#endif