2012-12-28 07:07:14 +00:00
|
|
|
/*
|
2012-12-28 10:41:30 +00:00
|
|
|
* audio output driver for SDL 1.2+
|
2012-12-28 07:07:14 +00:00
|
|
|
* Copyright (C) 2012 Rudolf Polzer <divVerent@xonotic.org>
|
|
|
|
*
|
2012-12-28 10:41:30 +00:00
|
|
|
* This file is part of mpv.
|
2012-12-28 07:07:14 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "audio/format.h"
|
|
|
|
#include "talloc.h"
|
|
|
|
#include "ao.h"
|
2014-03-07 14:24:32 +00:00
|
|
|
#include "internal.h"
|
2014-03-09 18:08:47 +00:00
|
|
|
#include "common/common.h"
|
2013-12-17 01:39:45 +00:00
|
|
|
#include "common/msg.h"
|
2013-12-17 01:02:25 +00:00
|
|
|
#include "options/m_option.h"
|
2012-12-28 07:07:14 +00:00
|
|
|
#include "osdep/timer.h"
|
|
|
|
|
|
|
|
#include <SDL.h>
|
|
|
|
|
|
|
|
struct priv
|
|
|
|
{
|
|
|
|
bool paused;
|
2014-03-09 18:08:47 +00:00
|
|
|
|
2013-07-21 20:28:40 +00:00
|
|
|
float buflen;
|
2012-12-28 07:07:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void audio_callback(void *userdata, Uint8 *stream, int len)
|
|
|
|
{
|
|
|
|
struct ao *ao = userdata;
|
|
|
|
|
2014-03-09 18:08:47 +00:00
|
|
|
void *data[1] = {stream};
|
2012-12-28 07:07:14 +00:00
|
|
|
|
2014-03-09 18:08:47 +00:00
|
|
|
if (len % ao->sstride)
|
|
|
|
MP_ERR(ao, "SDL audio callback not sample aligned");
|
2012-12-28 07:07:14 +00:00
|
|
|
|
2014-03-09 18:08:47 +00:00
|
|
|
// Time this buffer will take, plus assume 1 period (1 callback invocation)
|
|
|
|
// fixed latency.
|
|
|
|
double delay = 2 * len / (double)ao->bps;
|
2012-12-28 07:07:14 +00:00
|
|
|
|
2014-03-09 18:08:47 +00:00
|
|
|
ao_read_data(ao, data, len / ao->sstride, mp_time_us() + 1000000LL * delay);
|
2012-12-28 07:07:14 +00:00
|
|
|
}
|
|
|
|
|
2014-03-08 23:49:39 +00:00
|
|
|
static void uninit(struct ao *ao)
|
2012-12-28 07:07:14 +00:00
|
|
|
{
|
|
|
|
struct priv *priv = ao->priv;
|
|
|
|
if (!priv)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (SDL_WasInit(SDL_INIT_AUDIO)) {
|
|
|
|
// make sure the callback exits
|
|
|
|
SDL_LockAudio();
|
|
|
|
|
|
|
|
// close audio device
|
|
|
|
SDL_QuitSubSystem(SDL_INIT_AUDIO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int ceil_power_of_two(unsigned int x)
|
|
|
|
{
|
|
|
|
int y = 1;
|
|
|
|
while (y < x)
|
|
|
|
y *= 2;
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
2013-07-22 20:57:51 +00:00
|
|
|
static int init(struct ao *ao)
|
2012-12-28 07:07:14 +00:00
|
|
|
{
|
|
|
|
if (SDL_WasInit(SDL_INIT_AUDIO)) {
|
2013-08-22 21:12:35 +00:00
|
|
|
MP_ERR(ao, "already initialized\n");
|
2012-12-28 07:07:14 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-07-21 20:28:40 +00:00
|
|
|
struct priv *priv = ao->priv;
|
2012-12-28 07:07:14 +00:00
|
|
|
|
|
|
|
if (SDL_InitSubSystem(SDL_INIT_AUDIO)) {
|
|
|
|
if (!ao->probing)
|
2013-08-22 21:12:35 +00:00
|
|
|
MP_ERR(ao, "SDL_Init failed\n");
|
2014-03-08 23:49:39 +00:00
|
|
|
uninit(ao);
|
2012-12-28 07:07:14 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-05-09 16:06:26 +00:00
|
|
|
struct mp_chmap_sel sel = {0};
|
|
|
|
mp_chmap_sel_add_waveext_def(&sel);
|
|
|
|
if (!ao_chmap_sel_adjust(ao, &sel, &ao->channels)) {
|
2014-03-08 23:49:39 +00:00
|
|
|
uninit(ao);
|
2013-05-09 16:06:26 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-11-10 22:15:02 +00:00
|
|
|
ao->format = af_fmt_from_planar(ao->format);
|
|
|
|
|
2012-12-28 07:07:14 +00:00
|
|
|
SDL_AudioSpec desired, obtained;
|
|
|
|
|
|
|
|
switch (ao->format) {
|
2013-06-16 16:47:02 +00:00
|
|
|
case AF_FORMAT_U8: desired.format = AUDIO_U8; break;
|
|
|
|
case AF_FORMAT_S8: desired.format = AUDIO_S8; break;
|
|
|
|
case AF_FORMAT_U16_LE: desired.format = AUDIO_U16LSB; break;
|
|
|
|
case AF_FORMAT_U16_BE: desired.format = AUDIO_U16MSB; break;
|
2012-12-28 07:07:14 +00:00
|
|
|
default:
|
2013-06-16 16:47:02 +00:00
|
|
|
case AF_FORMAT_S16_LE: desired.format = AUDIO_S16LSB; break;
|
|
|
|
case AF_FORMAT_S16_BE: desired.format = AUDIO_S16MSB; break;
|
2012-12-28 07:07:14 +00:00
|
|
|
#ifdef AUDIO_S32LSB
|
2013-06-16 16:47:02 +00:00
|
|
|
case AF_FORMAT_S32_LE: desired.format = AUDIO_S32LSB; break;
|
2012-12-28 07:07:14 +00:00
|
|
|
#endif
|
|
|
|
#ifdef AUDIO_S32MSB
|
2013-06-16 16:47:02 +00:00
|
|
|
case AF_FORMAT_S32_BE: desired.format = AUDIO_S32MSB; break;
|
2012-12-28 07:07:14 +00:00
|
|
|
#endif
|
|
|
|
#ifdef AUDIO_F32LSB
|
2013-06-16 16:47:02 +00:00
|
|
|
case AF_FORMAT_FLOAT_LE: desired.format = AUDIO_F32LSB; break;
|
2012-12-28 07:07:14 +00:00
|
|
|
#endif
|
|
|
|
#ifdef AUDIO_F32MSB
|
2013-06-16 16:47:02 +00:00
|
|
|
case AF_FORMAT_FLOAT_BE: desired.format = AUDIO_F32MSB; break;
|
2012-12-28 07:07:14 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
desired.freq = ao->samplerate;
|
2013-04-05 21:06:22 +00:00
|
|
|
desired.channels = ao->channels.num;
|
2014-03-09 18:08:47 +00:00
|
|
|
desired.samples = MPMIN(32768, ceil_power_of_two(ao->samplerate *
|
2013-07-21 20:28:40 +00:00
|
|
|
priv->buflen));
|
2012-12-28 07:07:14 +00:00
|
|
|
desired.callback = audio_callback;
|
|
|
|
desired.userdata = ao;
|
|
|
|
|
2013-08-22 21:12:35 +00:00
|
|
|
MP_VERBOSE(ao, "requested format: %d Hz, %d channels, %x, "
|
|
|
|
"buffer size: %d samples\n",
|
|
|
|
(int) desired.freq, (int) desired.channels,
|
|
|
|
(int) desired.format, (int) desired.samples);
|
2012-12-28 07:07:14 +00:00
|
|
|
|
|
|
|
obtained = desired;
|
|
|
|
if (SDL_OpenAudio(&desired, &obtained)) {
|
|
|
|
if (!ao->probing)
|
2013-08-22 21:12:35 +00:00
|
|
|
MP_ERR(ao, "could not open audio: %s\n", SDL_GetError());
|
2014-03-08 23:49:39 +00:00
|
|
|
uninit(ao);
|
2012-12-28 07:07:14 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-08-22 21:12:35 +00:00
|
|
|
MP_VERBOSE(ao, "obtained format: %d Hz, %d channels, %x, "
|
|
|
|
"buffer size: %d samples\n",
|
|
|
|
(int) obtained.freq, (int) obtained.channels,
|
|
|
|
(int) obtained.format, (int) obtained.samples);
|
2012-12-28 07:07:14 +00:00
|
|
|
|
2014-03-10 20:30:40 +00:00
|
|
|
// The sample count is usually the number of samples the callback requests,
|
|
|
|
// which we assume is the period size. Normally, ao.c will allocate a large
|
|
|
|
// enough buffer. But in case the period size should be pathologically
|
|
|
|
// large, this will help.
|
|
|
|
ao->device_buffer = 3 * obtained.samples;
|
|
|
|
|
2012-12-28 07:07:14 +00:00
|
|
|
switch (obtained.format) {
|
2013-06-16 16:47:02 +00:00
|
|
|
case AUDIO_U8: ao->format = AF_FORMAT_U8; break;
|
|
|
|
case AUDIO_S8: ao->format = AF_FORMAT_S8; break;
|
|
|
|
case AUDIO_S16LSB: ao->format = AF_FORMAT_S16_LE; break;
|
|
|
|
case AUDIO_S16MSB: ao->format = AF_FORMAT_S16_BE; break;
|
|
|
|
case AUDIO_U16LSB: ao->format = AF_FORMAT_U16_LE; break;
|
|
|
|
case AUDIO_U16MSB: ao->format = AF_FORMAT_U16_BE; break;
|
2012-12-28 07:07:14 +00:00
|
|
|
#ifdef AUDIO_S32LSB
|
2013-06-16 16:47:02 +00:00
|
|
|
case AUDIO_S32LSB: ao->format = AF_FORMAT_S32_LE; break;
|
2012-12-28 07:07:14 +00:00
|
|
|
#endif
|
|
|
|
#ifdef AUDIO_S32MSB
|
2013-06-16 16:47:02 +00:00
|
|
|
case AUDIO_S32MSB: ao->format = AF_FORMAT_S32_BE; break;
|
2012-12-28 07:07:14 +00:00
|
|
|
#endif
|
|
|
|
#ifdef AUDIO_F32LSB
|
2013-06-16 16:47:02 +00:00
|
|
|
case AUDIO_F32LSB: ao->format = AF_FORMAT_FLOAT_LE; break;
|
2012-12-28 07:07:14 +00:00
|
|
|
#endif
|
|
|
|
#ifdef AUDIO_F32MSB
|
2013-06-16 16:47:02 +00:00
|
|
|
case AUDIO_F32MSB: ao->format = AF_FORMAT_FLOAT_BE; break;
|
2012-12-28 07:07:14 +00:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
if (!ao->probing)
|
2013-08-22 21:12:35 +00:00
|
|
|
MP_ERR(ao, "could not find matching format\n");
|
2014-03-08 23:49:39 +00:00
|
|
|
uninit(ao);
|
2012-12-28 07:07:14 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-05-09 16:06:26 +00:00
|
|
|
if (!ao_chmap_sel_get_def(ao, &sel, &ao->channels, obtained.channels)) {
|
2014-03-08 23:49:39 +00:00
|
|
|
uninit(ao);
|
2013-05-09 16:06:26 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-12-28 07:07:14 +00:00
|
|
|
ao->samplerate = obtained.freq;
|
|
|
|
|
|
|
|
priv->paused = 1;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
audio/out/pull: remove race conditions
There were subtle and minor race conditions in the pull.c code, and AOs
using it (jack, portaudio, sdl, wasapi). Attempt to remove these.
There was at least a race condition in the ao_reset() implementation:
mp_ring_reset() was called concurrently to the audio callback. While the
ringbuffer uses atomics to allow concurrent access, the reset function
wasn't concurrency-safe (and can't easily be made to).
Fix this by stopping the audio callback before doing a reset. After
that, we can do anything without needing synchronization. The callback
is resumed when resuming playback at a later point.
Don't call driver->pause, and make driver->resume and driver->reset
start/stop the audio callback. In the initial state, the audio callback
must be disabled.
JackAudio of course is different. Maybe there is no way to suspend the
audio callback without "disconnecting" it (what jack_deactivate() would
do), so I'm not trying my luck, and implemented a really bad hack doing
active waiting until we get the audio callback into a state where it
won't interfere. Once the callback goes from AO_STATE_WAIT to NONE, we
can be sure that the callback doesn't access the ringbuffer or anything
else anymore. Since both sched_yield() and pthread_yield() apparently
are not always available, use mp_sleep_us(1) to avoid burning CPU during
active waiting.
The ao_jack.c change also removes a race condition: apparently we didn't
initialize _all_ ao fields before starting the audio callback.
In ao_wasapi.c, I'm not sure whether reset really waits for the audio
callback to return. Kovensky says it's not guaranteed, so disable the
reset callback - for now the behavior of ao_wasapi.c is like with
ao_jack.c, and active waiting is used to deal with the audio callback.
2014-05-29 00:24:17 +00:00
|
|
|
static void reset(struct ao *ao)
|
2012-12-28 07:07:14 +00:00
|
|
|
{
|
|
|
|
struct priv *priv = ao->priv;
|
2014-03-09 18:08:47 +00:00
|
|
|
if (!priv->paused)
|
|
|
|
SDL_PauseAudio(SDL_TRUE);
|
2012-12-28 07:07:14 +00:00
|
|
|
priv->paused = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void resume(struct ao *ao)
|
|
|
|
{
|
|
|
|
struct priv *priv = ao->priv;
|
2014-03-09 18:08:47 +00:00
|
|
|
if (priv->paused)
|
|
|
|
SDL_PauseAudio(SDL_FALSE);
|
|
|
|
priv->paused = 0;
|
2012-12-28 07:07:14 +00:00
|
|
|
}
|
|
|
|
|
2013-07-21 20:28:40 +00:00
|
|
|
#define OPT_BASE_STRUCT struct priv
|
|
|
|
|
2012-12-28 07:07:14 +00:00
|
|
|
const struct ao_driver audio_out_sdl = {
|
2013-10-23 17:07:27 +00:00
|
|
|
.description = "SDL Audio",
|
|
|
|
.name = "sdl",
|
2012-12-28 07:07:14 +00:00
|
|
|
.init = init,
|
|
|
|
.uninit = uninit,
|
audio/out/pull: remove race conditions
There were subtle and minor race conditions in the pull.c code, and AOs
using it (jack, portaudio, sdl, wasapi). Attempt to remove these.
There was at least a race condition in the ao_reset() implementation:
mp_ring_reset() was called concurrently to the audio callback. While the
ringbuffer uses atomics to allow concurrent access, the reset function
wasn't concurrency-safe (and can't easily be made to).
Fix this by stopping the audio callback before doing a reset. After
that, we can do anything without needing synchronization. The callback
is resumed when resuming playback at a later point.
Don't call driver->pause, and make driver->resume and driver->reset
start/stop the audio callback. In the initial state, the audio callback
must be disabled.
JackAudio of course is different. Maybe there is no way to suspend the
audio callback without "disconnecting" it (what jack_deactivate() would
do), so I'm not trying my luck, and implemented a really bad hack doing
active waiting until we get the audio callback into a state where it
won't interfere. Once the callback goes from AO_STATE_WAIT to NONE, we
can be sure that the callback doesn't access the ringbuffer or anything
else anymore. Since both sched_yield() and pthread_yield() apparently
are not always available, use mp_sleep_us(1) to avoid burning CPU during
active waiting.
The ao_jack.c change also removes a race condition: apparently we didn't
initialize _all_ ao fields before starting the audio callback.
In ao_wasapi.c, I'm not sure whether reset really waits for the audio
callback to return. Kovensky says it's not guaranteed, so disable the
reset callback - for now the behavior of ao_wasapi.c is like with
ao_jack.c, and active waiting is used to deal with the audio callback.
2014-05-29 00:24:17 +00:00
|
|
|
.reset = reset,
|
2012-12-28 07:07:14 +00:00
|
|
|
.resume = resume,
|
2013-07-21 20:28:40 +00:00
|
|
|
.priv_size = sizeof(struct priv),
|
|
|
|
.priv_defaults = &(const struct priv) {
|
|
|
|
.buflen = 0, // use SDL default
|
|
|
|
},
|
|
|
|
.options = (const struct m_option[]) {
|
|
|
|
OPT_FLOAT("buflen", buflen, 0),
|
|
|
|
{0}
|
|
|
|
},
|
2012-12-28 07:07:14 +00:00
|
|
|
};
|