comparison libao2/audio_out.c @ 10147:f2725d6717bd

Native MacOSX audio output by Dan Christiansen <danchr@daimi.au.dk>
author alex
date Wed, 21 May 2003 21:15:46 +0000
parents 12b1790038b0
children 66e491c35dc8
comparison
equal deleted inserted replaced
10146:d72aabc36ca1 10147:f2725d6717bd
42 extern ao_functions_t audio_out_sgi; 42 extern ao_functions_t audio_out_sgi;
43 #endif 43 #endif
44 #ifdef HAVE_WIN32WAVEOUT 44 #ifdef HAVE_WIN32WAVEOUT
45 extern ao_functions_t audio_out_win32; 45 extern ao_functions_t audio_out_win32;
46 #endif 46 #endif
47 #ifdef MACOSX
48 extern ao_functions_t audio_out_macosx;
49 #endif
47 #ifdef HAVE_DXR2 50 #ifdef HAVE_DXR2
48 extern ao_functions_t audio_out_dxr2; 51 extern ao_functions_t audio_out_dxr2;
49 #endif 52 #endif
50 extern ao_functions_t audio_out_mpegpes; 53 extern ao_functions_t audio_out_mpegpes;
51 extern ao_functions_t audio_out_pcm; 54 extern ao_functions_t audio_out_pcm;
60 &audio_out_dxr2, 63 &audio_out_dxr2,
61 #endif 64 #endif
62 // native: 65 // native:
63 #ifdef HAVE_WIN32WAVEOUT 66 #ifdef HAVE_WIN32WAVEOUT
64 &audio_out_win32, 67 &audio_out_win32,
68 #endif
69 #ifdef MACOSX
70 &audio_out_macosx,
65 #endif 71 #endif
66 #ifdef USE_OSS_AUDIO 72 #ifdef USE_OSS_AUDIO
67 &audio_out_oss, 73 &audio_out_oss,
68 #endif 74 #endif
69 #ifdef HAVE_ALSA9 75 #ifdef HAVE_ALSA9