2009-01-26 16:06:44 +01:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2001-06-03 01:25:43 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2002-10-22 18:24:26 +02:00
|
|
|
#include <string.h>
|
2011-04-09 02:03:22 +02:00
|
|
|
#include <assert.h>
|
2001-06-03 01:25:43 +02:00
|
|
|
|
2011-05-04 13:55:15 +02:00
|
|
|
#include "talloc.h"
|
|
|
|
|
2004-12-07 03:24:15 +01:00
|
|
|
#include "config.h"
|
2012-11-09 01:06:43 +01:00
|
|
|
#include "ao.h"
|
2013-06-16 18:47:02 +02:00
|
|
|
#include "audio/format.h"
|
2001-06-05 20:40:44 +02:00
|
|
|
|
2013-12-17 02:02:25 +01:00
|
|
|
#include "options/options.h"
|
|
|
|
#include "options/m_config.h"
|
2013-12-17 02:39:45 +01:00
|
|
|
#include "common/msg.h"
|
|
|
|
#include "common/global.h"
|
2002-09-30 00:57:54 +02:00
|
|
|
|
2011-05-04 13:55:15 +02:00
|
|
|
extern const struct ao_driver audio_out_oss;
|
|
|
|
extern const struct ao_driver audio_out_coreaudio;
|
2011-06-24 15:56:43 +02:00
|
|
|
extern const struct ao_driver audio_out_rsound;
|
2013-09-28 18:01:12 +02:00
|
|
|
extern const struct ao_driver audio_out_sndio;
|
2011-05-04 13:55:15 +02:00
|
|
|
extern const struct ao_driver audio_out_pulse;
|
|
|
|
extern const struct ao_driver audio_out_jack;
|
|
|
|
extern const struct ao_driver audio_out_openal;
|
|
|
|
extern const struct ao_driver audio_out_null;
|
|
|
|
extern const struct ao_driver audio_out_alsa;
|
|
|
|
extern const struct ao_driver audio_out_dsound;
|
2013-07-20 19:13:39 +02:00
|
|
|
extern const struct ao_driver audio_out_wasapi;
|
2011-05-04 13:55:15 +02:00
|
|
|
extern const struct ao_driver audio_out_pcm;
|
2012-09-14 17:51:26 +02:00
|
|
|
extern const struct ao_driver audio_out_lavc;
|
2012-04-27 11:26:04 +02:00
|
|
|
extern const struct ao_driver audio_out_portaudio;
|
2012-12-28 08:07:14 +01:00
|
|
|
extern const struct ao_driver audio_out_sdl;
|
2011-05-04 13:55:15 +02:00
|
|
|
|
|
|
|
static const struct ao_driver * const audio_out_drivers[] = {
|
2002-10-06 03:08:04 +02:00
|
|
|
// native:
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_COREAUDIO
|
2011-05-04 00:15:58 +02:00
|
|
|
&audio_out_coreaudio,
|
2005-10-12 01:07:53 +02:00
|
|
|
#endif
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_PULSE
|
2012-01-05 15:02:03 +01:00
|
|
|
&audio_out_pulse,
|
2001-08-28 12:54:31 +02:00
|
|
|
#endif
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_SNDIO
|
2013-09-28 18:01:12 +02:00
|
|
|
&audio_out_sndio,
|
|
|
|
#endif
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_ALSA
|
2011-05-04 00:15:58 +02:00
|
|
|
&audio_out_alsa,
|
2002-05-28 03:52:40 +02:00
|
|
|
#endif
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_WASAPI
|
2013-07-20 04:42:58 +02:00
|
|
|
&audio_out_wasapi,
|
|
|
|
#endif
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_OSS_AUDIO
|
2012-01-05 15:02:03 +01:00
|
|
|
&audio_out_oss,
|
|
|
|
#endif
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_DSOUND
|
2012-10-05 15:17:16 +02:00
|
|
|
&audio_out_dsound,
|
2013-02-06 22:23:58 +01:00
|
|
|
#endif
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_PORTAUDIO
|
2013-02-06 22:23:58 +01:00
|
|
|
&audio_out_portaudio,
|
2001-06-05 12:37:50 +02:00
|
|
|
#endif
|
2011-05-04 00:15:58 +02:00
|
|
|
// wrappers:
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_JACK
|
2011-05-04 00:15:58 +02:00
|
|
|
&audio_out_jack,
|
2004-06-25 20:11:15 +02:00
|
|
|
#endif
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_OPENAL
|
2011-05-04 00:15:58 +02:00
|
|
|
&audio_out_openal,
|
2012-12-28 08:07:14 +01:00
|
|
|
#endif
|
2014-01-25 09:18:07 +01:00
|
|
|
#if HAVE_SDL1 || HAVE_SDL2
|
2012-12-28 08:07:14 +01:00
|
|
|
&audio_out_sdl,
|
2006-02-16 23:35:04 +01:00
|
|
|
#endif
|
2011-05-04 00:15:58 +02:00
|
|
|
&audio_out_null,
|
|
|
|
// should not be auto-selected:
|
|
|
|
&audio_out_pcm,
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_ENCODING
|
2012-10-05 15:17:16 +02:00
|
|
|
&audio_out_lavc,
|
|
|
|
#endif
|
2013-07-16 13:28:28 +02:00
|
|
|
#if HAVE_RSOUND
|
2011-06-24 15:56:43 +02:00
|
|
|
&audio_out_rsound,
|
|
|
|
#endif
|
2011-05-04 00:15:58 +02:00
|
|
|
NULL
|
2001-06-03 01:25:43 +02:00
|
|
|
};
|
2001-11-24 06:21:22 +01:00
|
|
|
|
2013-07-21 21:33:17 +02:00
|
|
|
static bool get_desc(struct m_obj_desc *dst, int index)
|
2011-05-04 00:15:58 +02:00
|
|
|
{
|
2013-07-21 21:33:17 +02:00
|
|
|
if (index >= MP_ARRAY_SIZE(audio_out_drivers) - 1)
|
|
|
|
return false;
|
|
|
|
const struct ao_driver *ao = audio_out_drivers[index];
|
|
|
|
*dst = (struct m_obj_desc) {
|
2013-10-23 19:07:27 +02:00
|
|
|
.name = ao->name,
|
|
|
|
.description = ao->description,
|
2013-07-21 21:33:17 +02:00
|
|
|
.priv_size = ao->priv_size,
|
|
|
|
.priv_defaults = ao->priv_defaults,
|
|
|
|
.options = ao->options,
|
2013-07-21 22:03:53 +02:00
|
|
|
.hidden = ao->encode,
|
2013-07-21 21:33:17 +02:00
|
|
|
.p = ao,
|
|
|
|
};
|
|
|
|
return true;
|
2002-09-30 00:57:54 +02:00
|
|
|
}
|
2001-11-24 06:21:22 +01:00
|
|
|
|
2013-07-21 21:33:17 +02:00
|
|
|
// For the ao option
|
|
|
|
const struct m_obj_list ao_obj_list = {
|
|
|
|
.get_desc = get_desc,
|
|
|
|
.description = "audio outputs",
|
|
|
|
.allow_unknown_entries = true,
|
|
|
|
.allow_trailer = true,
|
|
|
|
};
|
2011-04-09 02:03:22 +02:00
|
|
|
|
2013-08-01 17:41:32 +02:00
|
|
|
static struct ao *ao_create(bool probing, struct mpv_global *global,
|
2013-07-21 21:33:17 +02:00
|
|
|
struct input_ctx *input_ctx,
|
|
|
|
struct encode_lavc_context *encode_lavc_ctx,
|
|
|
|
int samplerate, int format, struct mp_chmap channels,
|
|
|
|
char *name, char **args)
|
2013-02-06 22:54:03 +01:00
|
|
|
{
|
2013-08-01 17:41:32 +02:00
|
|
|
struct mp_log *log = mp_log_new(NULL, global->log, "ao");
|
2013-07-21 21:33:17 +02:00
|
|
|
struct m_obj_desc desc;
|
|
|
|
if (!m_obj_list_find(&desc, &ao_obj_list, bstr0(name))) {
|
2013-12-21 21:49:13 +01:00
|
|
|
mp_msg(log, MSGL_ERR, "Audio output %s not found!\n", name);
|
2013-08-01 17:41:32 +02:00
|
|
|
talloc_free(log);
|
2013-07-21 21:33:17 +02:00
|
|
|
return NULL;
|
|
|
|
};
|
|
|
|
struct ao *ao = talloc_ptrtype(NULL, ao);
|
2013-08-01 17:41:32 +02:00
|
|
|
talloc_steal(ao, log);
|
2013-07-21 21:33:17 +02:00
|
|
|
*ao = (struct ao) {
|
|
|
|
.driver = desc.p,
|
|
|
|
.probing = probing,
|
2013-08-01 17:41:32 +02:00
|
|
|
.opts = global->opts,
|
2013-07-21 21:33:17 +02:00
|
|
|
.encode_lavc_ctx = encode_lavc_ctx,
|
|
|
|
.input_ctx = input_ctx,
|
|
|
|
.samplerate = samplerate,
|
|
|
|
.channels = channels,
|
|
|
|
.format = format,
|
2013-08-01 17:41:32 +02:00
|
|
|
.log = mp_log_new(ao, log, name),
|
2013-07-21 21:33:17 +02:00
|
|
|
};
|
2013-02-06 22:54:03 +01:00
|
|
|
if (ao->driver->encode != !!ao->encode_lavc_ctx)
|
2013-07-21 21:33:17 +02:00
|
|
|
goto error;
|
2013-12-21 19:45:42 +01:00
|
|
|
struct m_config *config = m_config_from_obj_desc(ao, ao->log, &desc);
|
2013-12-01 00:12:10 +01:00
|
|
|
if (m_config_apply_defaults(config, name, global->opts->ao_defs) < 0)
|
|
|
|
goto error;
|
2013-07-22 22:57:51 +02:00
|
|
|
if (m_config_set_obj_params(config, args) < 0)
|
2013-07-21 21:33:17 +02:00
|
|
|
goto error;
|
2013-07-22 22:57:51 +02:00
|
|
|
ao->priv = config->optstruct;
|
2013-11-09 23:18:09 +01:00
|
|
|
char *chmap = mp_chmap_to_str(&ao->channels);
|
|
|
|
MP_VERBOSE(ao, "requested format: %d Hz, %s channels, %s\n",
|
|
|
|
ao->samplerate, chmap, af_fmt_to_str(ao->format));
|
|
|
|
talloc_free(chmap);
|
2013-07-22 22:57:51 +02:00
|
|
|
if (ao->driver->init(ao) < 0)
|
2013-07-21 21:33:17 +02:00
|
|
|
goto error;
|
2013-11-10 23:24:21 +01:00
|
|
|
ao->sstride = af_fmt2bits(ao->format) / 8;
|
|
|
|
if (!af_fmt_is_planar(ao->format))
|
|
|
|
ao->sstride *= ao->channels.num;
|
|
|
|
ao->bps = ao->samplerate * ao->sstride;
|
2013-07-21 21:33:17 +02:00
|
|
|
return ao;
|
|
|
|
error:
|
|
|
|
talloc_free(ao);
|
|
|
|
return NULL;
|
2013-02-06 22:54:03 +01:00
|
|
|
}
|
|
|
|
|
2013-08-01 17:41:32 +02:00
|
|
|
struct ao *ao_init_best(struct mpv_global *global,
|
2013-07-21 21:33:17 +02:00
|
|
|
struct input_ctx *input_ctx,
|
|
|
|
struct encode_lavc_context *encode_lavc_ctx,
|
|
|
|
int samplerate, int format, struct mp_chmap channels)
|
2011-04-09 02:03:22 +02:00
|
|
|
{
|
2013-12-21 18:43:03 +01:00
|
|
|
struct mp_log *log = mp_log_new(NULL, global->log, "ao");
|
|
|
|
struct ao *ao = NULL;
|
2013-08-01 17:41:32 +02:00
|
|
|
struct m_obj_settings *ao_list = global->opts->audio_driver_list;
|
2013-07-21 21:33:17 +02:00
|
|
|
if (ao_list && ao_list[0].name) {
|
|
|
|
for (int n = 0; ao_list[n].name; n++) {
|
|
|
|
if (strlen(ao_list[n].name) == 0)
|
|
|
|
goto autoprobe;
|
2013-12-21 18:43:03 +01:00
|
|
|
mp_verbose(log, "Trying preferred audio driver '%s'\n",
|
|
|
|
ao_list[n].name);
|
|
|
|
ao = ao_create(false, global, input_ctx, encode_lavc_ctx,
|
|
|
|
samplerate, format, channels,
|
|
|
|
ao_list[n].name, ao_list[n].attribs);
|
2013-07-21 21:33:17 +02:00
|
|
|
if (ao)
|
2013-12-21 18:43:03 +01:00
|
|
|
goto done;
|
|
|
|
mp_warn(log, "Failed to initialize audio driver '%s'\n",
|
2013-07-21 21:33:17 +02:00
|
|
|
ao_list[n].name);
|
2004-10-13 18:22:59 +02:00
|
|
|
}
|
2013-12-21 18:43:03 +01:00
|
|
|
goto done;
|
2011-04-09 02:03:22 +02:00
|
|
|
}
|
2013-07-21 21:33:17 +02:00
|
|
|
autoprobe:
|
2002-09-30 00:57:54 +02:00
|
|
|
// now try the rest...
|
2011-04-09 02:03:22 +02:00
|
|
|
for (int i = 0; audio_out_drivers[i]; i++) {
|
2013-12-21 18:43:03 +01:00
|
|
|
ao = ao_create(true, global, input_ctx, encode_lavc_ctx,
|
|
|
|
samplerate, format, channels,
|
|
|
|
(char *)audio_out_drivers[i]->name, NULL);
|
2013-07-21 21:33:17 +02:00
|
|
|
if (ao)
|
2013-12-21 18:43:03 +01:00
|
|
|
goto done;
|
2002-09-30 00:57:54 +02:00
|
|
|
}
|
2013-12-21 18:43:03 +01:00
|
|
|
done:
|
|
|
|
talloc_free(log);
|
|
|
|
return ao;
|
2011-04-09 02:03:22 +02:00
|
|
|
}
|
|
|
|
|
2014-02-28 00:56:10 +01:00
|
|
|
// Uninitialize and destroy the AO.
|
|
|
|
// cut_audio: if false, block until all remaining audio was played.
|
2011-05-04 13:55:15 +02:00
|
|
|
void ao_uninit(struct ao *ao, bool cut_audio)
|
2011-04-09 02:03:22 +02:00
|
|
|
{
|
2013-07-21 21:33:17 +02:00
|
|
|
ao->driver->uninit(ao, cut_audio);
|
2011-05-04 13:55:15 +02:00
|
|
|
talloc_free(ao);
|
2011-04-09 02:03:22 +02:00
|
|
|
}
|
|
|
|
|
2014-02-28 00:56:10 +01:00
|
|
|
// Queue the given audio data. Start playback if it hasn't started yet. Return
|
|
|
|
// the number of samples that was accepted (the core will try to queue the rest
|
|
|
|
// again later). Should never block.
|
|
|
|
// data: start pointer for each plane. If the audio data is packed, only
|
|
|
|
// data[0] is valid, otherwise there is a plane for each channel.
|
|
|
|
// samples: size of the audio data (see ao->sstride)
|
|
|
|
// flags: currently AOPLAY_FINAL_CHUNK can be set
|
2013-11-10 23:38:18 +01:00
|
|
|
int ao_play(struct ao *ao, void **data, int samples, int flags)
|
2011-04-09 02:03:22 +02:00
|
|
|
{
|
2013-11-10 23:38:18 +01:00
|
|
|
return ao->driver->play(ao, data, samples, flags);
|
2011-04-09 02:03:22 +02:00
|
|
|
}
|
|
|
|
|
2012-04-07 15:26:56 +02:00
|
|
|
int ao_control(struct ao *ao, enum aocontrol cmd, void *arg)
|
2011-04-09 02:03:22 +02:00
|
|
|
{
|
2011-05-04 13:55:15 +02:00
|
|
|
if (ao->driver->control)
|
|
|
|
return ao->driver->control(ao, cmd, arg);
|
|
|
|
return CONTROL_UNKNOWN;
|
2011-04-09 02:03:22 +02:00
|
|
|
}
|
|
|
|
|
2014-02-28 00:56:10 +01:00
|
|
|
// Return size of the buffered data in seconds. Can include the device latency.
|
|
|
|
// Basically, this returns how much data there is still to play, and how long
|
|
|
|
// it takes until the last sample in the buffer reaches the speakers. This is
|
|
|
|
// used for audio/video synchronization, so it's very important to implement
|
|
|
|
// this correctly.
|
2011-04-09 02:03:22 +02:00
|
|
|
double ao_get_delay(struct ao *ao)
|
|
|
|
{
|
2011-05-05 20:34:17 +02:00
|
|
|
if (!ao->driver->get_delay) {
|
|
|
|
assert(ao->untimed);
|
|
|
|
return 0;
|
|
|
|
}
|
2011-05-04 13:55:15 +02:00
|
|
|
return ao->driver->get_delay(ao);
|
2011-04-09 02:03:22 +02:00
|
|
|
}
|
|
|
|
|
2014-02-28 00:56:10 +01:00
|
|
|
// Return free size of the internal audio buffer. This controls how much audio
|
|
|
|
// the core should decode and try to queue with ao_play().
|
2011-04-09 02:03:22 +02:00
|
|
|
int ao_get_space(struct ao *ao)
|
|
|
|
{
|
2013-11-10 23:38:18 +01:00
|
|
|
return ao->driver->get_space(ao);
|
2011-04-09 02:03:22 +02:00
|
|
|
}
|
|
|
|
|
2014-02-28 00:56:10 +01:00
|
|
|
// Stop playback and empty buffers. Essentially go back to the state after
|
|
|
|
// ao->init().
|
2011-04-09 02:03:22 +02:00
|
|
|
void ao_reset(struct ao *ao)
|
|
|
|
{
|
2011-05-05 20:34:17 +02:00
|
|
|
if (ao->driver->reset)
|
|
|
|
ao->driver->reset(ao);
|
2011-04-09 02:03:22 +02:00
|
|
|
}
|
|
|
|
|
2014-02-28 00:56:10 +01:00
|
|
|
// Pause playback. Keep the current buffer. ao_get_delay() must return the
|
|
|
|
// same value as before pausing.
|
2011-04-09 02:03:22 +02:00
|
|
|
void ao_pause(struct ao *ao)
|
|
|
|
{
|
2011-05-05 20:34:17 +02:00
|
|
|
if (ao->driver->pause)
|
|
|
|
ao->driver->pause(ao);
|
2011-04-09 02:03:22 +02:00
|
|
|
}
|
|
|
|
|
2014-02-28 00:56:10 +01:00
|
|
|
// Resume playback. Play the remaining buffer. If the driver doesn't support
|
|
|
|
// pausing, it has to work around this and e.g. use ao_play_silence() to fill
|
|
|
|
// the lost audio.
|
2011-04-09 02:03:22 +02:00
|
|
|
void ao_resume(struct ao *ao)
|
|
|
|
{
|
2011-05-05 20:34:17 +02:00
|
|
|
if (ao->driver->resume)
|
|
|
|
ao->driver->resume(ao);
|
2011-05-04 13:55:15 +02:00
|
|
|
}
|
|
|
|
|
2013-11-10 23:05:51 +01:00
|
|
|
int ao_play_silence(struct ao *ao, int samples)
|
|
|
|
{
|
|
|
|
if (samples <= 0 || AF_FORMAT_IS_SPECIAL(ao->format))
|
|
|
|
return 0;
|
2013-11-10 23:24:21 +01:00
|
|
|
char *p = talloc_size(NULL, samples * ao->sstride);
|
|
|
|
af_fill_silence(p, samples * ao->sstride, ao->format);
|
2013-11-10 23:38:18 +01:00
|
|
|
void *tmp[MP_NUM_CHANNELS];
|
|
|
|
for (int n = 0; n < MP_NUM_CHANNELS; n++)
|
|
|
|
tmp[n] = p;
|
|
|
|
int r = ao_play(ao, tmp, samples, 0);
|
2013-11-10 23:05:51 +01:00
|
|
|
talloc_free(p);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-05-09 15:12:16 +02:00
|
|
|
bool ao_chmap_sel_adjust(struct ao *ao, const struct mp_chmap_sel *s,
|
|
|
|
struct mp_chmap *map)
|
|
|
|
{
|
|
|
|
return mp_chmap_sel_adjust(s, map);
|
|
|
|
}
|
2011-05-04 13:55:15 +02:00
|
|
|
|
2013-05-09 15:12:16 +02:00
|
|
|
bool ao_chmap_sel_get_def(struct ao *ao, const struct mp_chmap_sel *s,
|
|
|
|
struct mp_chmap *map, int num)
|
|
|
|
{
|
|
|
|
return mp_chmap_sel_get_def(s, map, num);
|
|
|
|
}
|