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.
27 #include "audio_out.h"
31 // there are some globals:
33 char *ao_subdevice
= NULL
;
35 extern const struct ao_driver audio_out_oss
;
36 extern const struct ao_driver audio_out_coreaudio
;
37 extern const struct ao_driver audio_out_arts
;
38 extern const struct ao_driver audio_out_esd
;
39 extern const struct ao_driver audio_out_pulse
;
40 extern const struct ao_driver audio_out_jack
;
41 extern const struct ao_driver audio_out_openal
;
42 extern const struct ao_driver audio_out_null
;
43 extern const struct ao_driver audio_out_alsa5
;
44 extern const struct ao_driver audio_out_alsa
;
45 extern const struct ao_driver audio_out_nas
;
46 extern const struct ao_driver audio_out_sdl
;
47 extern const struct ao_driver audio_out_sun
;
48 extern const struct ao_driver audio_out_sgi
;
49 extern const struct ao_driver audio_out_win32
;
50 extern const struct ao_driver audio_out_dsound
;
51 extern const struct ao_driver audio_out_kai
;
52 extern const struct ao_driver audio_out_dart
;
53 extern const struct ao_driver audio_out_ivtv
;
54 extern const struct ao_driver audio_out_v4l2
;
55 extern const struct ao_driver audio_out_mpegpes
;
56 extern const struct ao_driver audio_out_pcm
;
57 extern const struct ao_driver audio_out_pss
;
59 static const struct ao_driver
* const audio_out_drivers
[] = {
64 #ifdef CONFIG_WIN32WAVEOUT
73 #ifdef CONFIG_COREAUDIO
76 #ifdef CONFIG_OSS_AUDIO
85 #ifdef CONFIG_SGI_AUDIO
88 #ifdef CONFIG_SUN_AUDIO
117 #ifdef CONFIG_V4L2_DECODER
121 // should not be auto-selected:
126 void list_audio_out(void)
129 mp_tmsg(MSGT_AO
, MSGL_INFO
, "Available audio output drivers:\n");
130 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_AUDIO_OUTPUTS\n");
131 while (audio_out_drivers
[i
]) {
132 const ao_info_t
*info
= audio_out_drivers
[i
++]->info
;
133 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "\t%s\t%s\n", info
->short_name
,
136 mp_msg(MSGT_GLOBAL
, MSGL_INFO
,"\n");
139 struct ao
*ao_create(void)
141 struct ao
*r
= talloc(NULL
, struct ao
);
142 *r
= (struct ao
){.outburst
= OUTBURST
, .buffersize
= -1};
146 void ao_init(struct ao
*ao
, char **ao_list
)
148 /* Caller adding child blocks is not supported as we may call
149 * talloc_free_children() to clean up after failed open attempts.
151 assert(talloc_total_blocks(ao
) == 1);
152 struct ao backup
= *ao
;
157 // first try the preferred drivers, with their optional subdevice param:
159 char *ao_name
= *ao_list
;
161 goto try_defaults
; // empty entry means try defaults
163 char *params
= strchr(ao_name
, ':');
165 ao_len
= params
- ao_name
;
168 ao_len
= strlen(ao_name
);
170 mp_tmsg(MSGT_AO
, MSGL_V
,
171 "Trying preferred audio driver '%.*s', options '%s'\n",
172 ao_len
, ao_name
, params
? params
: "[none]");
174 const struct ao_driver
*audio_out
= NULL
;
175 for (int i
= 0; audio_out_drivers
[i
]; i
++) {
176 audio_out
= audio_out_drivers
[i
];
177 if (!strncmp(audio_out
->info
->short_name
, ao_name
, ao_len
))
182 // name matches, try it
183 ao
->driver
= audio_out
;
184 if (audio_out
->init(ao
, params
) >= 0) {
185 ao
->driver
= audio_out
;
186 ao
->initialized
= true;
189 mp_tmsg(MSGT_AO
, MSGL_WARN
,
190 "Failed to initialize audio driver '%s'\n", ao_name
);
191 talloc_free_children(ao
);
194 mp_tmsg(MSGT_AO
, MSGL_WARN
, "No such audio driver '%.*s'\n",
201 mp_tmsg(MSGT_AO
, MSGL_V
, "Trying every known audio driver...\n");
203 // now try the rest...
204 for (int i
= 0; audio_out_drivers
[i
]; i
++) {
205 const struct ao_driver
*audio_out
= audio_out_drivers
[i
];
206 ao
->driver
= audio_out
;
207 if (audio_out
->init(ao
, NULL
) >= 0) {
208 ao
->initialized
= true;
209 ao
->driver
= audio_out
;
212 talloc_free_children(ao
);
218 void ao_uninit(struct ao
*ao
, bool cut_audio
)
221 ao
->driver
->uninit(ao
, cut_audio
);
225 int ao_play(struct ao
*ao
, void *data
, int len
, int flags
)
227 return ao
->driver
->play(ao
, data
, len
, flags
);
230 int ao_control(struct ao
*ao
, int cmd
, void *arg
)
232 if (ao
->driver
->control
)
233 return ao
->driver
->control(ao
, cmd
, arg
);
234 return CONTROL_UNKNOWN
;
237 double ao_get_delay(struct ao
*ao
)
239 return ao
->driver
->get_delay(ao
);
242 int ao_get_space(struct ao
*ao
)
244 return ao
->driver
->get_space(ao
);
247 void ao_reset(struct ao
*ao
)
249 ao
->driver
->reset(ao
);
252 void ao_pause(struct ao
*ao
)
254 ao
->driver
->pause(ao
);
257 void ao_resume(struct ao
*ao
)
259 ao
->driver
->resume(ao
);
264 int old_ao_init(struct ao
*ao
, char *params
)
268 ao_subdevice
= params
? talloc_strdup(ao
, params
) : NULL
;
269 if (ao
->driver
->old_functions
->init(ao
->samplerate
, ao
->channels
,
275 void old_ao_uninit(struct ao
*ao
, bool cut_audio
)
277 ao
->driver
->old_functions
->uninit(cut_audio
);
281 int old_ao_play(struct ao
*ao
, void *data
, int len
, int flags
)
283 return ao
->driver
->old_functions
->play(data
, len
, flags
);
286 int old_ao_control(struct ao
*ao
, int cmd
, void *arg
)
288 return ao
->driver
->old_functions
->control(cmd
, arg
);
291 float old_ao_get_delay(struct ao
*ao
)
293 return ao
->driver
->old_functions
->get_delay();
296 int old_ao_get_space(struct ao
*ao
)
298 return ao
->driver
->old_functions
->get_space();
301 void old_ao_reset(struct ao
*ao
)
303 ao
->driver
->old_functions
->reset();
306 void old_ao_pause(struct ao
*ao
)
308 ao
->driver
->old_functions
->pause();
311 void old_ao_resume(struct ao
*ao
)
313 ao
->driver
->old_functions
->resume();