Mercurial > mplayer.hg
annotate libao2/audio_out.c @ 5108:f70791118f90
fixes...
author | arpi |
---|---|
date | Fri, 15 Mar 2002 21:43:22 +0000 |
parents | d678ce495a75 |
children | 0178b7a552d5 |
rev | line source |
---|---|
954 | 1 #include <stdio.h> |
2 #include <stdlib.h> | |
3 | |
4 #include "../config.h" | |
5 #include "audio_out.h" | |
1058 | 6 #include "afmt.h" |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1032
diff
changeset
|
7 |
954 | 8 // there are some globals: |
3095 | 9 ao_data_t ao_data={0,0,0,0,OUTBURST,-1,0}; |
1185 | 10 char *ao_subdevice = NULL; |
954 | 11 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1032
diff
changeset
|
12 #ifdef USE_OSS_AUDIO |
954 | 13 extern ao_functions_t audio_out_oss; |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1032
diff
changeset
|
14 #endif |
954 | 15 extern ao_functions_t audio_out_null; |
1007 | 16 #ifdef HAVE_ALSA5 |
17 extern ao_functions_t audio_out_alsa5; | |
18 #endif | |
1032 | 19 #ifdef HAVE_ALSA9 |
20 extern ao_functions_t audio_out_alsa9; | |
21 #endif | |
22 #ifdef HAVE_ESD | |
23 extern ao_functions_t audio_out_esd; | |
24 #endif | |
3276 | 25 #ifdef HAVE_NAS |
26 extern ao_functions_t audio_out_nas; | |
27 #endif | |
966
69b4f944ce08
Added support for sdl audio out (buggy pre-alpha).
atmosfear
parents:
954
diff
changeset
|
28 #ifdef HAVE_SDL |
69b4f944ce08
Added support for sdl audio out (buggy pre-alpha).
atmosfear
parents:
954
diff
changeset
|
29 extern ao_functions_t audio_out_sdl; |
69b4f944ce08
Added support for sdl audio out (buggy pre-alpha).
atmosfear
parents:
954
diff
changeset
|
30 #endif |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1032
diff
changeset
|
31 #ifdef USE_SUN_AUDIO |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1032
diff
changeset
|
32 extern ao_functions_t audio_out_sun; |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1032
diff
changeset
|
33 #endif |
2450 | 34 #ifdef USE_SGI_AUDIO |
35 extern ao_functions_t audio_out_sgi; | |
36 #endif | |
4788
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4097
diff
changeset
|
37 #ifdef HAVE_DVB |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4097
diff
changeset
|
38 extern ao_functions_t audio_out_mpegpes; |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4097
diff
changeset
|
39 #endif |
1107 | 40 extern ao_functions_t audio_out_pcm; |
1185 | 41 extern ao_functions_t audio_out_pss; |
3095 | 42 extern ao_functions_t audio_out_plugin; |
954 | 43 |
44 ao_functions_t* audio_out_drivers[] = | |
45 { | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1032
diff
changeset
|
46 #ifdef USE_OSS_AUDIO |
954 | 47 &audio_out_oss, |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1032
diff
changeset
|
48 #endif |
1725
24e75b632740
Move the sun audio driver near the start of the list of audio drivers, so
jkeil
parents:
1528
diff
changeset
|
49 #ifdef USE_SUN_AUDIO |
24e75b632740
Move the sun audio driver near the start of the list of audio drivers, so
jkeil
parents:
1528
diff
changeset
|
50 &audio_out_sun, |
24e75b632740
Move the sun audio driver near the start of the list of audio drivers, so
jkeil
parents:
1528
diff
changeset
|
51 #endif |
2450 | 52 #ifdef USE_SGI_AUDIO |
53 &audio_out_sgi, | |
54 #endif | |
954 | 55 &audio_out_null, |
1007 | 56 #ifdef HAVE_ALSA5 |
995 | 57 &audio_out_alsa5, |
1007 | 58 #endif |
1032 | 59 #ifdef HAVE_ALSA9 |
60 &audio_out_alsa9, | |
61 #endif | |
62 #ifdef HAVE_ESD | |
63 &audio_out_esd, | |
64 #endif | |
3276 | 65 #ifdef HAVE_NAS |
66 &audio_out_nas, | |
67 #endif | |
966
69b4f944ce08
Added support for sdl audio out (buggy pre-alpha).
atmosfear
parents:
954
diff
changeset
|
68 #ifdef HAVE_SDL |
69b4f944ce08
Added support for sdl audio out (buggy pre-alpha).
atmosfear
parents:
954
diff
changeset
|
69 &audio_out_sdl, |
69b4f944ce08
Added support for sdl audio out (buggy pre-alpha).
atmosfear
parents:
954
diff
changeset
|
70 #endif |
4788
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4097
diff
changeset
|
71 #ifdef HAVE_DVB |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4097
diff
changeset
|
72 &audio_out_mpegpes, |
d678ce495a75
Moved HW dependent mixer stuff to libao and removed master switch
anders
parents:
4097
diff
changeset
|
73 #endif |
1107 | 74 &audio_out_pcm, |
3095 | 75 &audio_out_plugin, |
1185 | 76 // &audio_out_pss, |
954 | 77 NULL |
78 }; | |
3095 | 79 |
80 | |
81 |