Commit 2e1e7fc4 authored by Sam Lantinga's avatar Sam Lantinga

Fixed bug #698

 Hans de Goede      2009-02-13 01:10:52 PST

Since the new "glitch free" version of pulseaudio (used in Fedora 10 amongst
others), the sound of SDL using apps (like a simple playmus call) has been
crackling.

While looking in to fixing this I noticed that the current pulseaudio code in
SDL uses pa_simple. However pa_simple uses a thread to pump pulseaudio events
and ipc, given that SDL already has its own thread for audio handling this is
clearly suboptimal, leading to unnecessary context switching IPC, etc. Also
pa_simple does not allow one to implement the WaitAudio() callback for SDL
audiodrivers properly.

Given that my work is mostly a rewrite (although some original pieces remain)
I'm attaching the new .c and .h file, as that is easier to review then the huge
diff.

Let me know if you also want the diff.

This new version has the following features:
-no longer use an additional thread next to the SDL sound thread
-do not crackle with glitch free audio
-when used with a newer pulse, which does glitch free audio, the total latency
is
 the same as with the alsa driver
-proper WaitAudio() implementation, saving another mixlen worth of latency
-adds a WaitDone() implementation

This patch has been written in consultancy with Lennart Poetering (the
pulseaudio author) and has been reviewed by him for correct use of the pa API.

--HG--
branch : SDL-1.2
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%403856
parent e867c836
/* -*- Mode: C; c-basic-offset: 8; indent-tabs-mode: t -*- */
/* /*
SDL - Simple DirectMedia Layer SDL - Simple DirectMedia Layer
Copyright (C) 1997-2009 Sam Lantinga Copyright (C) 1997-2009 Sam Lantinga
...@@ -30,6 +29,7 @@ ...@@ -30,6 +29,7 @@
#include <unistd.h> #include <unistd.h>
#include <signal.h> #include <signal.h>
#include <errno.h> #include <errno.h>
#include <pulse/pulseaudio.h>
#include <pulse/simple.h> #include <pulse/simple.h>
#include "SDL_timer.h" #include "SDL_timer.h"
...@@ -55,6 +55,7 @@ static void PULSE_WaitAudio(_THIS); ...@@ -55,6 +55,7 @@ static void PULSE_WaitAudio(_THIS);
static void PULSE_PlayAudio(_THIS); static void PULSE_PlayAudio(_THIS);
static Uint8 *PULSE_GetAudioBuf(_THIS); static Uint8 *PULSE_GetAudioBuf(_THIS);
static void PULSE_CloseAudio(_THIS); static void PULSE_CloseAudio(_THIS);
static void PULSE_WaitDone(_THIS);
#ifdef SDL_AUDIO_DRIVER_PULSE_DYNAMIC #ifdef SDL_AUDIO_DRIVER_PULSE_DYNAMIC
...@@ -74,19 +75,44 @@ static pa_simple* (*SDL_NAME(pa_simple_new))( ...@@ -74,19 +75,44 @@ static pa_simple* (*SDL_NAME(pa_simple_new))(
int *error int *error
); );
static void (*SDL_NAME(pa_simple_free))(pa_simple *s); static void (*SDL_NAME(pa_simple_free))(pa_simple *s);
static int (*SDL_NAME(pa_simple_drain))(pa_simple *s, int *error);
static int (*SDL_NAME(pa_simple_write))(
pa_simple *s,
const void *data,
size_t length,
int *error
);
static pa_channel_map* (*SDL_NAME(pa_channel_map_init_auto))( static pa_channel_map* (*SDL_NAME(pa_channel_map_init_auto))(
pa_channel_map *m, pa_channel_map *m,
unsigned channels, unsigned channels,
pa_channel_map_def_t def pa_channel_map_def_t def
); );
pa_mainloop * (*SDL_NAME(pa_mainloop_new))(void);
pa_mainloop_api * (*SDL_NAME(pa_mainloop_get_api))(pa_mainloop *m);
int (*SDL_NAME(pa_mainloop_iterate))(pa_mainloop *m, int block, int *retval);
void (*SDL_NAME(pa_mainloop_free))(pa_mainloop *m);
pa_operation_state_t (*SDL_NAME(pa_operation_get_state))(pa_operation *o);
void (*SDL_NAME(pa_operation_cancel))(pa_operation *o);
void (*SDL_NAME(pa_operation_unref))(pa_operation *o);
pa_context * (*SDL_NAME(pa_context_new))(
pa_mainloop_api *m, const char *name);
int (*SDL_NAME(pa_context_connect))(
pa_context *c, const char *server,
pa_context_flags_t flags, const pa_spawn_api *api);
pa_context_state_t (*SDL_NAME(pa_context_get_state))(pa_context *c);
void (*SDL_NAME(pa_context_disconnect))(pa_context *c);
void (*SDL_NAME(pa_context_unref))(pa_context *c);
pa_stream * (*SDL_NAME(pa_stream_new))(pa_context *c,
const char *name, const pa_sample_spec *ss, const pa_channel_map *map);
int (*SDL_NAME(pa_stream_connect_playback))(pa_stream *s, const char *dev,
const pa_buffer_attr *attr, pa_stream_flags_t flags,
pa_cvolume *volume, pa_stream *sync_stream);
pa_stream_state_t (*SDL_NAME(pa_stream_get_state))(pa_stream *s);
size_t (*SDL_NAME(pa_stream_writable_size))(pa_stream *s);
int (*SDL_NAME(pa_stream_write))(pa_stream *s, const void *data, size_t nbytes,
pa_free_cb_t free_cb, int64_t offset, pa_seek_mode_t seek);
pa_operation * (*SDL_NAME(pa_stream_drain))(pa_stream *s,
pa_stream_success_cb_t cb, void *userdata);
int (*SDL_NAME(pa_stream_disconnect))(pa_stream *s);
void (*SDL_NAME(pa_stream_unref))(pa_stream *s);
static struct { static struct {
const char *name; const char *name;
...@@ -96,12 +122,48 @@ static struct { ...@@ -96,12 +122,48 @@ static struct {
(void **)&SDL_NAME(pa_simple_new) }, (void **)&SDL_NAME(pa_simple_new) },
{ "pa_simple_free", { "pa_simple_free",
(void **)&SDL_NAME(pa_simple_free) }, (void **)&SDL_NAME(pa_simple_free) },
{ "pa_simple_drain",
(void **)&SDL_NAME(pa_simple_drain) },
{ "pa_simple_write",
(void **)&SDL_NAME(pa_simple_write) },
{ "pa_channel_map_init_auto", { "pa_channel_map_init_auto",
(void **)&SDL_NAME(pa_channel_map_init_auto) }, (void **)&SDL_NAME(pa_channel_map_init_auto) },
{ "pa_mainloop_new",
(void **)&SDL_NAME(pa_mainloop_new) },
{ "pa_mainloop_get_api",
(void **)&SDL_NAME(pa_mainloop_get_api) },
{ "pa_mainloop_iterate",
(void **)&SDL_NAME(pa_mainloop_iterate) },
{ "pa_mainloop_free",
(void **)&SDL_NAME(pa_mainloop_free) },
{ "pa_operation_get_state",
(void **)&SDL_NAME(pa_operation_get_state) },
{ "pa_operation_cancel",
(void **)&SDL_NAME(pa_operation_cancel) },
{ "pa_operation_unref",
(void **)&SDL_NAME(pa_operation_unref) },
{ "pa_context_new",
(void **)&SDL_NAME(pa_context_new) },
{ "pa_context_connect",
(void **)&SDL_NAME(pa_context_connect) },
{ "pa_context_get_state",
(void **)&SDL_NAME(pa_context_get_state) },
{ "pa_context_disconnect",
(void **)&SDL_NAME(pa_context_disconnect) },
{ "pa_context_unref",
(void **)&SDL_NAME(pa_context_unref) },
{ "pa_stream_new",
(void **)&SDL_NAME(pa_stream_new) },
{ "pa_stream_connect_playback",
(void **)&SDL_NAME(pa_stream_connect_playback) },
{ "pa_stream_get_state",
(void **)&SDL_NAME(pa_stream_get_state) },
{ "pa_stream_writable_size",
(void **)&SDL_NAME(pa_stream_writable_size) },
{ "pa_stream_write",
(void **)&SDL_NAME(pa_stream_write) },
{ "pa_stream_drain",
(void **)&SDL_NAME(pa_stream_drain) },
{ "pa_stream_disconnect",
(void **)&SDL_NAME(pa_stream_disconnect) },
{ "pa_stream_unref",
(void **)&SDL_NAME(pa_stream_unref) },
}; };
static void UnloadPulseLibrary() static void UnloadPulseLibrary()
...@@ -218,6 +280,7 @@ static SDL_AudioDevice *Audio_CreateDevice(int devindex) ...@@ -218,6 +280,7 @@ static SDL_AudioDevice *Audio_CreateDevice(int devindex)
this->PlayAudio = PULSE_PlayAudio; this->PlayAudio = PULSE_PlayAudio;
this->GetAudioBuf = PULSE_GetAudioBuf; this->GetAudioBuf = PULSE_GetAudioBuf;
this->CloseAudio = PULSE_CloseAudio; this->CloseAudio = PULSE_CloseAudio;
this->WaitDone = PULSE_WaitDone;
this->free = Audio_DeleteDevice; this->free = Audio_DeleteDevice;
...@@ -232,26 +295,25 @@ AudioBootStrap PULSE_bootstrap = { ...@@ -232,26 +295,25 @@ AudioBootStrap PULSE_bootstrap = {
/* This function waits until it is possible to write a full sound buffer */ /* This function waits until it is possible to write a full sound buffer */
static void PULSE_WaitAudio(_THIS) static void PULSE_WaitAudio(_THIS)
{ {
/* Check to see if the thread-parent process is still alive */ int size;
{ static int cnt = 0; while(1) {
/* Note that this only works with thread implementations if (SDL_NAME(pa_context_get_state)(context) != PA_CONTEXT_READY ||
that use a different process id for each thread. SDL_NAME(pa_stream_get_state)(stream) != PA_STREAM_READY ||
*/ SDL_NAME(pa_mainloop_iterate)(mainloop, 1, NULL) < 0) {
if (parent && (((++cnt)%10) == 0)) { /* Check every 10 loops */ this->enabled = 0;
if ( kill(parent, 0) < 0 ) { return;
this->enabled = 0;
}
} }
size = SDL_NAME(pa_stream_writable_size)(stream);
if (size >= mixlen)
return;
} }
} }
static void PULSE_PlayAudio(_THIS) static void PULSE_PlayAudio(_THIS)
{ {
/* Write the audio data */ /* Write the audio data */
if ( SDL_NAME(pa_simple_write)(stream, mixbuf, mixlen, NULL) != 0 ) if (SDL_NAME(pa_stream_write)(stream, mixbuf, mixlen, NULL, 0LL, PA_SEEK_RELATIVE) < 0)
{
this->enabled = 0; this->enabled = 0;
}
} }
static Uint8 *PULSE_GetAudioBuf(_THIS) static Uint8 *PULSE_GetAudioBuf(_THIS)
...@@ -266,10 +328,19 @@ static void PULSE_CloseAudio(_THIS) ...@@ -266,10 +328,19 @@ static void PULSE_CloseAudio(_THIS)
mixbuf = NULL; mixbuf = NULL;
} }
if ( stream != NULL ) { if ( stream != NULL ) {
SDL_NAME(pa_simple_drain)(stream, NULL); SDL_NAME(pa_stream_disconnect)(stream);
SDL_NAME(pa_simple_free)(stream); SDL_NAME(pa_stream_unref)(stream);
stream = NULL; stream = NULL;
} }
if (context != NULL) {
SDL_NAME(pa_context_disconnect)(context);
SDL_NAME(pa_context_unref)(context);
context = NULL;
}
if (mainloop != NULL) {
SDL_NAME(pa_mainloop_free)(mainloop);
mainloop = NULL;
}
} }
/* Try to get the name of the program */ /* Try to get the name of the program */
...@@ -297,12 +368,36 @@ static char *get_progname(void) ...@@ -297,12 +368,36 @@ static char *get_progname(void)
return(progname); return(progname);
} }
static void stream_drain_complete(pa_stream *s, int success, void *userdata) {
}
static void PULSE_WaitDone(_THIS)
{
pa_operation *o;
o = SDL_NAME(pa_stream_drain)(stream, stream_drain_complete, NULL);
if (!o)
return;
while (SDL_NAME(pa_operation_get_state)(o) != PA_OPERATION_DONE) {
if (SDL_NAME(pa_context_get_state)(context) != PA_CONTEXT_READY ||
SDL_NAME(pa_stream_get_state)(stream) != PA_STREAM_READY ||
SDL_NAME(pa_mainloop_iterate)(mainloop, 1, NULL) < 0) {
SDL_NAME(pa_operation_cancel)(o);
break;
}
}
SDL_NAME(pa_operation_unref)(o);
}
static int PULSE_OpenAudio(_THIS, SDL_AudioSpec *spec) static int PULSE_OpenAudio(_THIS, SDL_AudioSpec *spec)
{ {
int state;
Uint16 test_format; Uint16 test_format;
pa_sample_spec paspec; pa_sample_spec paspec;
pa_buffer_attr paattr; pa_buffer_attr paattr;
pa_channel_map pacmap; pa_channel_map pacmap;
pa_stream_flags_t flags = 0;
paspec.format = PA_SAMPLE_INVALID; paspec.format = PA_SAMPLE_INVALID;
for ( test_format = SDL_FirstAudioFormat(spec->format); test_format; ) { for ( test_format = SDL_FirstAudioFormat(spec->format); test_format; ) {
...@@ -330,6 +425,9 @@ static int PULSE_OpenAudio(_THIS, SDL_AudioSpec *spec) ...@@ -330,6 +425,9 @@ static int PULSE_OpenAudio(_THIS, SDL_AudioSpec *spec)
paspec.rate = spec->freq; paspec.rate = spec->freq;
/* Calculate the final parameters for this audio specification */ /* Calculate the final parameters for this audio specification */
#ifdef PA_STREAM_ADJUST_LATENCY
spec->samples /= 2; /* Mix in smaller chunck to avoid underruns */
#endif
SDL_CalculateAudioSpec(spec); SDL_CalculateAudioSpec(spec);
/* Allocate mixing buffer */ /* Allocate mixing buffer */
...@@ -341,36 +439,92 @@ static int PULSE_OpenAudio(_THIS, SDL_AudioSpec *spec) ...@@ -341,36 +439,92 @@ static int PULSE_OpenAudio(_THIS, SDL_AudioSpec *spec)
SDL_memset(mixbuf, spec->silence, spec->size); SDL_memset(mixbuf, spec->silence, spec->size);
/* Reduced prebuffering compared to the defaults. */ /* Reduced prebuffering compared to the defaults. */
#ifdef PA_STREAM_ADJUST_LATENCY
paattr.tlength = mixlen * 4; /* 2x original requested bufsize */
paattr.prebuf = -1;
paattr.maxlength = -1;
paattr.minreq = mixlen; /* -1 can lead to pa_stream_writable_size()
>= mixlen never becoming true */
flags = PA_STREAM_ADJUST_LATENCY;
#else
paattr.tlength = mixlen*2; paattr.tlength = mixlen*2;
paattr.minreq = mixlen;
paattr.prebuf = mixlen*2; paattr.prebuf = mixlen*2;
paattr.maxlength = mixlen*2; paattr.maxlength = mixlen*2;
paattr.minreq = mixlen;
#endif
/* The SDL ALSA output hints us that we use Windows' channel mapping */ /* The SDL ALSA output hints us that we use Windows' channel mapping */
/* http://bugzilla.libsdl.org/show_bug.cgi?id=110 */ /* http://bugzilla.libsdl.org/show_bug.cgi?id=110 */
SDL_NAME(pa_channel_map_init_auto)( SDL_NAME(pa_channel_map_init_auto)(
&pacmap, spec->channels, PA_CHANNEL_MAP_WAVEEX); &pacmap, spec->channels, PA_CHANNEL_MAP_WAVEEX);
/* Set up a new main loop */
if (!(mainloop = SDL_NAME(pa_mainloop_new)())) {
PULSE_CloseAudio(this);
SDL_SetError("pa_mainloop_new() failed");
return(-1);
}
mainloop_api = SDL_NAME(pa_mainloop_get_api)(mainloop);
if (!(context = SDL_NAME(pa_context_new)(mainloop_api, get_progname()))) {
PULSE_CloseAudio(this);
SDL_SetError("pa_context_new() failed");
return(-1);
}
/* Connect to the PulseAudio server */ /* Connect to the PulseAudio server */
stream = SDL_NAME(pa_simple_new)( if (SDL_NAME(pa_context_connect)(context, NULL, 0, NULL) < 0) {
NULL, /* server */ PULSE_CloseAudio(this);
get_progname(), /* application name */ SDL_SetError("Could not setup connection to PulseAudio");
PA_STREAM_PLAYBACK, /* playback mode */ return(-1);
NULL, /* device on the server */ }
do {
if (SDL_NAME(pa_mainloop_iterate)(mainloop, 1, NULL) < 0) {
PULSE_CloseAudio(this);
SDL_SetError("pa_mainloop_iterate() failed");
return(-1);
}
state = SDL_NAME(pa_context_get_state)(context);
if (!PA_CONTEXT_IS_GOOD(state)) {
PULSE_CloseAudio(this);
SDL_SetError("Could not connect to PulseAudio");
return(-1);
}
} while (state != PA_CONTEXT_READY);
stream = SDL_NAME(pa_stream_new)(
context,
"Simple DirectMedia Layer", /* stream description */ "Simple DirectMedia Layer", /* stream description */
&paspec, /* sample format spec */ &paspec, /* sample format spec */
&pacmap, /* channel map */ &pacmap /* channel map */
&paattr, /* buffering attributes */
NULL /* error code */
); );
if ( stream == NULL ) { if ( stream == NULL ) {
PULSE_CloseAudio(this); PULSE_CloseAudio(this);
SDL_SetError("Could not connect to PulseAudio"); SDL_SetError("Could not setup PulseAudio stream");
return(-1); return(-1);
} }
/* Get the parent process id (we're the parent of the audio thread) */ if (SDL_NAME(pa_stream_connect_playback)(stream, NULL, &paattr, flags,
parent = getpid(); NULL, NULL) < 0) {
PULSE_CloseAudio(this);
SDL_SetError("Could not connect PulseAudio stream");
return(-1);
}
do {
if (SDL_NAME(pa_mainloop_iterate)(mainloop, 1, NULL) < 0) {
PULSE_CloseAudio(this);
SDL_SetError("pa_mainloop_iterate() failed");
return(-1);
}
state = SDL_NAME(pa_stream_get_state)(stream);
if (!PA_STREAM_IS_GOOD(state)) {
PULSE_CloseAudio(this);
SDL_SetError("Could not create to PulseAudio stream");
return(-1);
}
} while (state != PA_STREAM_READY);
return(0); return(0);
} }
...@@ -32,20 +32,38 @@ ...@@ -32,20 +32,38 @@
#define _THIS SDL_AudioDevice *this #define _THIS SDL_AudioDevice *this
struct SDL_PrivateAudioData { struct SDL_PrivateAudioData {
/* The audio stream handle */ pa_mainloop *mainloop;
pa_simple * stream; pa_mainloop_api *mainloop_api;
pa_context *context;
/* The parent process id, to detect when application quits */ pa_stream *stream;
pid_t parent;
/* Raw mixing buffer */ /* Raw mixing buffer */
Uint8 *mixbuf; Uint8 *mixbuf;
int mixlen; int mixlen;
}; };
#if (PA_API_VERSION < 12)
/** Return non-zero if the passed state is one of the connected states */
static inline int PA_CONTEXT_IS_GOOD(pa_context_state_t x) {
return
x == PA_CONTEXT_CONNECTING ||
x == PA_CONTEXT_AUTHORIZING ||
x == PA_CONTEXT_SETTING_NAME ||
x == PA_CONTEXT_READY;
}
/** Return non-zero if the passed state is one of the connected states */
static inline int PA_STREAM_IS_GOOD(pa_stream_state_t x) {
return
x == PA_STREAM_CREATING ||
x == PA_STREAM_READY;
}
#endif /* pulseaudio <= 0.9.10 */
/* Old variable names */ /* Old variable names */
#define mainloop (this->hidden->mainloop)
#define mainloop_api (this->hidden->mainloop_api)
#define context (this->hidden->context)
#define stream (this->hidden->stream) #define stream (this->hidden->stream)
#define parent (this->hidden->parent)
#define mixbuf (this->hidden->mixbuf) #define mixbuf (this->hidden->mixbuf)
#define mixlen (this->hidden->mixlen) #define mixlen (this->hidden->mixlen)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment