~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to mpeglib/lib/util/audio/audioIO.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
 
 
4
#ifdef HAVE_CONFIG_H
 
5
#include "config.h"
 
6
#endif
 
7
 
 
8
 
 
9
#ifdef SDL_WRAPPER
 
10
 
 
11
  #include "audioIO_SDL.cpp"
 
12
 
 
13
//
 
14
// If native sound is defined compiled for that
 
15
//
 
16
 
 
17
#else
 
18
 
 
19
 
 
20
#ifdef OS_AIX 
 
21
  #include "audioIO_AIX.cpp"
 
22
#endif
 
23
 
 
24
#ifdef OS_Linux
 
25
  #include "audioIO_Linux.cpp"
 
26
#endif
 
27
 
 
28
#ifdef OS_BSD
 
29
  #include "audioIO_Linux.cpp"
 
30
#endif
 
31
 
 
32
#if defined(OS_IRIX) || defined(OS_IRIX64)
 
33
  #include "audioIO_IRIX.cpp"
 
34
#endif
 
35
 
 
36
#ifdef OS_HPUX
 
37
  #include "audioIO_HPUX.cpp"
 
38
#endif
 
39
 
 
40
#ifdef OS_SunOS
 
41
  #include "audioIO_SunOS.cpp"
 
42
#endif
 
43
 
 
44
#ifdef __BEOS__
 
45
  #include "audioIO_BeOS.cpp"
 
46
#endif
 
47
 
 
48
 
 
49
#endif