core: fix audio-only + framestep weird behavior
[mplayer/glamo.git] / libao2 / audio_out.c
blob60671a799ffa89830e7e5a095edf21d1879589b1
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
23 #include "config.h"
24 #include "audio_out.h"
26 #include "mp_msg.h"
28 // there are some globals:
29 ao_data_t ao_data={0,0,0,0,OUTBURST,-1,0};
30 char *ao_subdevice = NULL;
32 extern const ao_functions_t audio_out_oss;
33 extern const ao_functions_t audio_out_coreaudio;
34 extern const ao_functions_t audio_out_arts;
35 extern const ao_functions_t audio_out_esd;
36 extern const ao_functions_t audio_out_pulse;
37 extern const ao_functions_t audio_out_jack;
38 extern const ao_functions_t audio_out_openal;
39 extern const ao_functions_t audio_out_null;
40 extern const ao_functions_t audio_out_alsa5;
41 extern const ao_functions_t audio_out_alsa;
42 extern const ao_functions_t audio_out_nas;
43 extern const ao_functions_t audio_out_sdl;
44 extern const ao_functions_t audio_out_sun;
45 extern const ao_functions_t audio_out_sgi;
46 extern const ao_functions_t audio_out_win32;
47 extern const ao_functions_t audio_out_dsound;
48 extern const ao_functions_t audio_out_kai;
49 extern const ao_functions_t audio_out_dart;
50 extern const ao_functions_t audio_out_dxr2;
51 extern const ao_functions_t audio_out_ivtv;
52 extern const ao_functions_t audio_out_v4l2;
53 extern const ao_functions_t audio_out_mpegpes;
54 extern const ao_functions_t audio_out_pcm;
55 extern const ao_functions_t audio_out_pss;
57 const ao_functions_t* const audio_out_drivers[] =
59 // native:
60 #ifdef CONFIG_DIRECTX
61 &audio_out_dsound,
62 #endif
63 #ifdef CONFIG_WIN32WAVEOUT
64 &audio_out_win32,
65 #endif
66 #ifdef CONFIG_KAI
67 &audio_out_kai,
68 #endif
69 #ifdef CONFIG_DART
70 &audio_out_dart,
71 #endif
72 #ifdef CONFIG_COREAUDIO
73 &audio_out_coreaudio,
74 #endif
75 #ifdef CONFIG_OSS_AUDIO
76 &audio_out_oss,
77 #endif
78 #ifdef CONFIG_ALSA
79 &audio_out_alsa,
80 #endif
81 #ifdef CONFIG_ALSA5
82 &audio_out_alsa5,
83 #endif
84 #ifdef CONFIG_SGI_AUDIO
85 &audio_out_sgi,
86 #endif
87 #ifdef CONFIG_SUN_AUDIO
88 &audio_out_sun,
89 #endif
90 // wrappers:
91 #ifdef CONFIG_ARTS
92 &audio_out_arts,
93 #endif
94 #ifdef CONFIG_ESD
95 &audio_out_esd,
96 #endif
97 #ifdef CONFIG_PULSE
98 &audio_out_pulse,
99 #endif
100 #ifdef CONFIG_JACK
101 &audio_out_jack,
102 #endif
103 #ifdef CONFIG_NAS
104 &audio_out_nas,
105 #endif
106 #ifdef CONFIG_SDL
107 &audio_out_sdl,
108 #endif
109 #ifdef CONFIG_OPENAL
110 &audio_out_openal,
111 #endif
112 &audio_out_mpegpes,
113 #ifdef CONFIG_DXR2
114 &audio_out_dxr2,
115 #endif
116 #ifdef CONFIG_IVTV
117 &audio_out_ivtv,
118 #endif
119 #ifdef CONFIG_V4L2_DECODER
120 &audio_out_v4l2,
121 #endif
122 &audio_out_null,
123 // should not be auto-selected:
124 &audio_out_pcm,
125 NULL
128 void list_audio_out(void){
129 int i=0;
130 mp_tmsg(MSGT_AO, MSGL_INFO, "Available audio output drivers:\n");
131 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_OUTPUTS\n");
132 while (audio_out_drivers[i]) {
133 const ao_info_t *info = audio_out_drivers[i++]->info;
134 mp_msg(MSGT_GLOBAL, MSGL_INFO,"\t%s\t%s\n", info->short_name, info->name);
136 mp_msg(MSGT_GLOBAL, MSGL_INFO,"\n");
139 const ao_functions_t* init_best_audio_out(char** ao_list,int use_plugin,int rate,int channels,int format,int flags){
140 int i;
141 // first try the preferred drivers, with their optional subdevice param:
142 if(ao_list && ao_list[0])
143 while(ao_list[0][0]){
144 char* ao=ao_list[0];
145 int ao_len;
146 free(ao_subdevice);
147 ao_subdevice = NULL;
148 ao_subdevice=strchr(ao,':');
149 if(ao_subdevice){
150 ao_len = ao_subdevice - ao;
151 ao_subdevice = strdup(&ao[ao_len + 1]);
153 else
154 ao_len = strlen(ao);
156 mp_tmsg(MSGT_AO, MSGL_V, "Trying preferred audio driver '%.*s', options '%s'\n",
157 ao_len, ao, ao_subdevice ? ao_subdevice : "[none]");
159 for(i=0;audio_out_drivers[i];i++){
160 const ao_functions_t* audio_out=audio_out_drivers[i];
161 if(!strncmp(audio_out->info->short_name,ao,ao_len)){
162 // name matches, try it
163 if(audio_out->init(rate,channels,format,flags))
164 return audio_out; // success!
165 else
166 mp_tmsg(MSGT_AO, MSGL_WARN, "Failed to initialize audio driver '%s'\n", ao);
167 break;
170 if (!audio_out_drivers[i]) // we searched through the entire list
171 mp_tmsg(MSGT_AO, MSGL_WARN, "No such audio driver '%.*s'\n", ao_len, ao);
172 // continue...
173 ++ao_list;
174 if(!(ao_list[0])) return NULL; // do NOT fallback to others
176 free(ao_subdevice);
177 ao_subdevice = NULL;
179 mp_tmsg(MSGT_AO, MSGL_V, "Trying every known audio driver...\n");
181 // now try the rest...
182 for(i=0;audio_out_drivers[i];i++){
183 const ao_functions_t* audio_out=audio_out_drivers[i];
184 // if(audio_out->control(AOCONTROL_QUERY_FORMAT, (int)format) == CONTROL_TRUE)
185 if(audio_out->init(rate,channels,format,flags))
186 return audio_out; // success!
188 return NULL;