2001-04-26 16:45:43 +00:00
|
|
|
/*
|
|
|
|
SDL - Simple DirectMedia Layer
|
2006-02-01 06:32:25 +00:00
|
|
|
Copyright (C) 1997-2006 Sam Lantinga
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
2006-02-01 06:32:25 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
2001-04-26 16:45:43 +00:00
|
|
|
License as published by the Free Software Foundation; either
|
2006-02-01 06:32:25 +00:00
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
This library 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
|
2006-02-01 06:32:25 +00:00
|
|
|
Lesser General Public License for more details.
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-02-01 06:32:25 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
Sam Lantinga
|
2001-12-14 12:38:15 +00:00
|
|
|
slouken@libsdl.org
|
2001-04-26 16:45:43 +00:00
|
|
|
*/
|
2006-02-21 08:46:50 +00:00
|
|
|
#include "SDL_config.h"
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
/* Allow access to a raw mixing buffer */
|
|
|
|
|
|
|
|
#include "SDL.h"
|
|
|
|
#include "SDL_audio_c.h"
|
|
|
|
#include "SDL_audiomem.h"
|
|
|
|
#include "SDL_sysaudio.h"
|
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
#define _THIS SDL_AudioDevice *this
|
|
|
|
|
|
|
|
static SDL_AudioDriver current_audio;
|
|
|
|
static SDL_AudioDevice *open_devices[16];
|
|
|
|
|
|
|
|
/* !!! FIXME: These are wordy and unlocalized... */
|
|
|
|
#define DEFAULT_OUTPUT_DEVNAME "System audio output device"
|
|
|
|
#define DEFAULT_INPUT_DEVNAME "System audio capture device"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Not all of these will be compiled and linked in, but it's convenient
|
|
|
|
* to have a complete list here and saves yet-another block of #ifdefs...
|
|
|
|
* Please see bootstrap[], below, for the actual #ifdef mess.
|
|
|
|
*/
|
|
|
|
extern AudioBootStrap BSD_AUDIO_bootstrap;
|
|
|
|
extern AudioBootStrap DSP_bootstrap;
|
|
|
|
extern AudioBootStrap DMA_bootstrap;
|
|
|
|
extern AudioBootStrap ALSA_bootstrap;
|
2007-08-20 01:02:37 +00:00
|
|
|
extern AudioBootStrap PULSEAUDIO_bootstrap;
|
2006-10-17 09:15:21 +00:00
|
|
|
extern AudioBootStrap QNXNTOAUDIO_bootstrap;
|
|
|
|
extern AudioBootStrap SUNAUDIO_bootstrap;
|
|
|
|
extern AudioBootStrap DMEDIA_bootstrap;
|
|
|
|
extern AudioBootStrap ARTS_bootstrap;
|
|
|
|
extern AudioBootStrap ESD_bootstrap;
|
|
|
|
extern AudioBootStrap NAS_bootstrap;
|
|
|
|
extern AudioBootStrap DSOUND_bootstrap;
|
2006-11-11 06:48:57 +00:00
|
|
|
extern AudioBootStrap WINWAVEOUT_bootstrap;
|
2006-10-17 09:15:21 +00:00
|
|
|
extern AudioBootStrap PAUDIO_bootstrap;
|
|
|
|
extern AudioBootStrap BEOSAUDIO_bootstrap;
|
|
|
|
extern AudioBootStrap COREAUDIO_bootstrap;
|
|
|
|
extern AudioBootStrap SNDMGR_bootstrap;
|
|
|
|
extern AudioBootStrap MINTAUDIO_GSXB_bootstrap;
|
|
|
|
extern AudioBootStrap MINTAUDIO_MCSN_bootstrap;
|
|
|
|
extern AudioBootStrap MINTAUDIO_STFA_bootstrap;
|
|
|
|
extern AudioBootStrap MINTAUDIO_XBIOS_bootstrap;
|
|
|
|
extern AudioBootStrap MINTAUDIO_DMA8_bootstrap;
|
|
|
|
extern AudioBootStrap DISKAUD_bootstrap;
|
|
|
|
extern AudioBootStrap DUMMYAUD_bootstrap;
|
|
|
|
extern AudioBootStrap DCAUD_bootstrap;
|
|
|
|
extern AudioBootStrap MMEAUDIO_bootstrap;
|
|
|
|
extern AudioBootStrap DART_bootstrap;
|
|
|
|
|
2005-11-23 07:29:56 +00:00
|
|
|
|
2001-04-26 16:45:43 +00:00
|
|
|
/* Available audio drivers */
|
|
|
|
static AudioBootStrap *bootstrap[] = {
|
2006-03-21 09:33:54 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_BSD
|
2006-07-10 21:04:37 +00:00
|
|
|
&BSD_AUDIO_bootstrap,
|
2001-07-08 09:00:06 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_OSS
|
2006-07-10 21:04:37 +00:00
|
|
|
&DSP_bootstrap,
|
|
|
|
&DMA_bootstrap,
|
2001-04-26 16:45:43 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_ALSA
|
2006-07-10 21:04:37 +00:00
|
|
|
&ALSA_bootstrap,
|
2001-04-26 16:45:43 +00:00
|
|
|
#endif
|
2007-08-20 01:02:37 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_PULSEAUDIO
|
2007-09-10 12:11:40 +00:00
|
|
|
&PULSEAUDIO_bootstrap,
|
2007-08-20 01:02:37 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_QNXNTO
|
2006-07-10 21:04:37 +00:00
|
|
|
&QNXNTOAUDIO_bootstrap,
|
Date: Sat, 2 Aug 2003 16:22:51 +0300
From: "Mike Gorchak"
Subject: New patches for QNX6
Here my patches for the SDL/QNX:
QNXSDL.diff - diff to non-QNX related sources:
- updated BUGS file, I think QNX6 is now will be officially supported
- configure.in - added shared library support for QNX, and removed dependency between the ALSA and QNX6.
- SDL_audio.c - added QNX NTO sound bootstrap insted of ALSA's.
- SDL_sysaudio.h - the same.
- SDL_nto_audio.c - the same.
- SDL_video.c - right now, QNX doesn't offer any method to obtain pointers to the OpenGL functions by function name, so they must be hardcoded in library, otherwise OpenGL will not be supported.
- testsprite.c - fixed: do not draw vertical red line if we are in non-double-buffered mode.
sdlqnxph.tar.gz - archive of the ./src/video/photon/* . Too many changes in code to make diffs :) :
+ Added stub for support hide/unhide window event
+ Added full YUV overlays support.
+ Added window maximize support.
+ Added mouse wheel events.
+ Added support for some specific key codes in Unicode mode (like ESC).
+ Added more checks to the all memory allocation code.
+ Added SDL_DOUBLEBUF support in all fullscreen modes.
+ Added fallback to window mode, if desired fullscreen mode is not supported.
+ Added stub support for the GL_LoadLibrary and GL_GetProcAddress functions.
+ Added resizable window support without caption.
! Fixed bug in the Ph_EV_EXPOSE event handler, when rectangles to update is 0 and when width or height of the rectangle is 0.
! Fixed bug in the event handler code. Events has not been passed to the window widget handler.
! Fixed codes for Win keys (Super/Hyper/Menu).
! Fixed memory leak, when deallocation palette.
! Fixed palette emulation code bugs.
! Fixed fullscreen and hwsurface handling.
! Fixed CLOSE button bug. First event was passed to the handler, but second terminated the application. Now all events passed to the application correctly.
- Removed all printfs in code, now SDL_SetError used instead of them.
- Disabled ToggleFullScreen function.
README.QNX - updated README.QNX file. Added much more issues.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40664
2003-08-04 00:52:42 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_SUNAUDIO
|
2006-07-10 21:04:37 +00:00
|
|
|
&SUNAUDIO_bootstrap,
|
2001-08-09 13:09:47 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_DMEDIA
|
2006-07-10 21:04:37 +00:00
|
|
|
&DMEDIA_bootstrap,
|
2001-05-23 00:36:17 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_ARTS
|
2006-07-10 21:04:37 +00:00
|
|
|
&ARTS_bootstrap,
|
2001-04-26 16:45:43 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_ESD
|
2006-07-10 21:04:37 +00:00
|
|
|
&ESD_bootstrap,
|
2001-04-26 16:45:43 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_NAS
|
2006-07-10 21:04:37 +00:00
|
|
|
&NAS_bootstrap,
|
2001-04-26 16:45:43 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_DSOUND
|
2006-07-10 21:04:37 +00:00
|
|
|
&DSOUND_bootstrap,
|
2001-04-26 16:45:43 +00:00
|
|
|
#endif
|
2006-11-11 06:48:57 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_WINWAVEOUT
|
|
|
|
&WINWAVEOUT_bootstrap,
|
2001-04-26 16:45:43 +00:00
|
|
|
#endif
|
2006-10-17 09:15:21 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_PAUDIO
|
|
|
|
&PAUDIO_bootstrap,
|
2006-02-16 10:11:48 +00:00
|
|
|
#endif
|
2006-10-17 09:15:21 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_BEOSAUDIO
|
|
|
|
&BEOSAUDIO_bootstrap,
|
2001-04-26 16:45:43 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_COREAUDIO
|
2006-07-10 21:04:37 +00:00
|
|
|
&COREAUDIO_bootstrap,
|
2004-08-21 02:06:30 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_SNDMGR
|
2006-07-10 21:04:37 +00:00
|
|
|
&SNDMGR_bootstrap,
|
2001-04-26 16:45:43 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_MINT
|
2006-07-10 21:04:37 +00:00
|
|
|
&MINTAUDIO_GSXB_bootstrap,
|
|
|
|
&MINTAUDIO_MCSN_bootstrap,
|
|
|
|
&MINTAUDIO_STFA_bootstrap,
|
|
|
|
&MINTAUDIO_XBIOS_bootstrap,
|
|
|
|
&MINTAUDIO_DMA8_bootstrap,
|
2002-06-10 20:42:53 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_DISK
|
2006-07-10 21:04:37 +00:00
|
|
|
&DISKAUD_bootstrap,
|
2002-10-05 16:50:56 +00:00
|
|
|
#endif
|
2006-03-14 08:53:33 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_DUMMY
|
2006-07-10 21:04:37 +00:00
|
|
|
&DUMMYAUD_bootstrap,
|
2006-03-14 08:53:33 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_DC
|
2006-07-10 21:04:37 +00:00
|
|
|
&DCAUD_bootstrap,
|
2003-05-29 04:44:13 +00:00
|
|
|
#endif
|
2006-02-16 10:11:48 +00:00
|
|
|
#if SDL_AUDIO_DRIVER_MMEAUDIO
|
2006-07-10 21:04:37 +00:00
|
|
|
&MMEAUDIO_bootstrap,
|
2006-02-16 10:11:48 +00:00
|
|
|
#endif
|
|
|
|
#if SDL_AUDIO_DRIVER_DART
|
2006-07-10 21:04:37 +00:00
|
|
|
&DART_bootstrap,
|
2001-06-16 01:51:42 +00:00
|
|
|
#endif
|
2006-07-10 21:04:37 +00:00
|
|
|
NULL
|
2001-04-26 16:45:43 +00:00
|
|
|
};
|
|
|
|
|
2006-10-28 16:48:03 +00:00
|
|
|
static SDL_AudioDevice *
|
|
|
|
get_audio_device(SDL_AudioDeviceID id)
|
2006-10-17 09:15:21 +00:00
|
|
|
{
|
|
|
|
id--;
|
2006-10-28 16:48:03 +00:00
|
|
|
if ((id >= SDL_arraysize(open_devices)) || (open_devices[id] == NULL)) {
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_SetError("Invalid audio device ID");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return open_devices[id];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* stubs for audio drivers that don't need a specific entry point... */
|
2006-10-28 16:48:03 +00:00
|
|
|
static int
|
|
|
|
SDL_AudioDetectDevices_Default(int iscapture)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
static void
|
|
|
|
SDL_AudioThreadInit_Default(_THIS)
|
|
|
|
{ /* no-op. */
|
|
|
|
}
|
|
|
|
static void
|
|
|
|
SDL_AudioWaitDevice_Default(_THIS)
|
|
|
|
{ /* no-op. */
|
|
|
|
}
|
|
|
|
static void
|
|
|
|
SDL_AudioPlayDevice_Default(_THIS)
|
|
|
|
{ /* no-op. */
|
|
|
|
}
|
|
|
|
static Uint8 *
|
|
|
|
SDL_AudioGetDeviceBuf_Default(_THIS)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
static void
|
|
|
|
SDL_AudioWaitDone_Default(_THIS)
|
|
|
|
{ /* no-op. */
|
|
|
|
}
|
|
|
|
static void
|
|
|
|
SDL_AudioCloseDevice_Default(_THIS)
|
|
|
|
{ /* no-op. */
|
|
|
|
}
|
|
|
|
static void
|
|
|
|
SDL_AudioDeinitialize_Default(void)
|
|
|
|
{ /* no-op. */
|
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
SDL_AudioOpenDevice_Default(_THIS, const char *devname, int iscapture)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-10-28 16:48:03 +00:00
|
|
|
static const char *
|
|
|
|
SDL_AudioGetDeviceName_Default(int index, int iscapture)
|
2006-10-17 09:15:21 +00:00
|
|
|
{
|
|
|
|
SDL_SetError("No such device");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
SDL_AudioLockDevice_Default(SDL_AudioDevice * device)
|
|
|
|
{
|
|
|
|
if (device->thread && (SDL_ThreadID() == device->threadid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SDL_mutexP(device->mixer_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
SDL_AudioUnlockDevice_Default(SDL_AudioDevice * device)
|
|
|
|
{
|
|
|
|
if (device->thread && (SDL_ThreadID() == device->threadid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SDL_mutexV(device->mixer_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-28 16:48:03 +00:00
|
|
|
static void
|
|
|
|
finalize_audio_entry_points(void)
|
2006-10-17 09:15:21 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Fill in stub functions for unused driver entry points. This lets us
|
|
|
|
* blindly call them without having to check for validity first.
|
|
|
|
*/
|
|
|
|
|
2006-10-28 16:48:03 +00:00
|
|
|
#define FILL_STUB(x) \
|
2006-10-17 09:15:21 +00:00
|
|
|
if (current_audio.impl.x == NULL) { \
|
|
|
|
current_audio.impl.x = SDL_Audio##x##_Default; \
|
|
|
|
}
|
|
|
|
FILL_STUB(DetectDevices);
|
|
|
|
FILL_STUB(GetDeviceName);
|
|
|
|
FILL_STUB(OpenDevice);
|
|
|
|
FILL_STUB(ThreadInit);
|
|
|
|
FILL_STUB(WaitDevice);
|
|
|
|
FILL_STUB(PlayDevice);
|
|
|
|
FILL_STUB(GetDeviceBuf);
|
|
|
|
FILL_STUB(WaitDone);
|
|
|
|
FILL_STUB(CloseDevice);
|
|
|
|
FILL_STUB(LockDevice);
|
|
|
|
FILL_STUB(UnlockDevice);
|
|
|
|
FILL_STUB(Deinitialize);
|
2006-10-28 16:48:03 +00:00
|
|
|
#undef FILL_STUB
|
2006-10-17 09:15:21 +00:00
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2008-08-25 15:08:59 +00:00
|
|
|
/* Streaming functions (for when the input and output buffer sizes are different) */
|
|
|
|
/* Write [length] bytes from buf into the streamer */
|
|
|
|
void
|
|
|
|
SDL_StreamWrite(SDL_AudioStreamer * stream, Uint8 * buf, int length)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < length; ++i) {
|
|
|
|
stream->buffer[stream->write_pos] = buf[i];
|
|
|
|
++stream->write_pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read [length] bytes out of the streamer into buf */
|
|
|
|
void
|
|
|
|
SDL_StreamRead(SDL_AudioStreamer * stream, Uint8 * buf, int length)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < length; ++i) {
|
|
|
|
buf[i] = stream->buffer[stream->read_pos];
|
|
|
|
++stream->read_pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
SDL_StreamLength(SDL_AudioStreamer * stream)
|
|
|
|
{
|
|
|
|
return (stream->write_pos - stream->read_pos) % stream->max_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize the stream by allocating the buffer and setting the read/write heads to the beginning */
|
|
|
|
int
|
|
|
|
SDL_StreamInit(SDL_AudioStreamer * stream, int max_len, Uint8 silence)
|
|
|
|
{
|
|
|
|
/* First try to allocate the buffer */
|
2008-08-26 07:34:49 +00:00
|
|
|
stream->buffer = (Uint8 *) SDL_malloc(max_len);
|
2008-08-25 15:08:59 +00:00
|
|
|
if (stream->buffer == NULL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream->max_len = max_len;
|
|
|
|
stream->read_pos = 0;
|
|
|
|
stream->write_pos = 0;
|
|
|
|
|
|
|
|
/* Zero out the buffer */
|
2008-08-26 07:34:49 +00:00
|
|
|
SDL_memset(stream->buffer, silence, max_len);
|
|
|
|
|
|
|
|
return 0;
|
2008-08-25 15:08:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Deinitialize the stream simply by freeing the buffer */
|
|
|
|
void
|
|
|
|
SDL_StreamDeinit(SDL_AudioStreamer * stream)
|
|
|
|
{
|
|
|
|
if (stream->buffer != NULL) {
|
2008-08-26 07:34:49 +00:00
|
|
|
SDL_free(stream->buffer);
|
2008-08-25 15:08:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-26 16:45:43 +00:00
|
|
|
|
|
|
|
/* The general mixing thread function */
|
2006-07-10 21:04:37 +00:00
|
|
|
int SDLCALL
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_RunAudio(void *devicep)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_AudioDevice *device = (SDL_AudioDevice *) devicep;
|
2006-07-10 21:04:37 +00:00
|
|
|
Uint8 *stream;
|
|
|
|
int stream_len;
|
|
|
|
void *udata;
|
|
|
|
void (SDLCALL * fill) (void *userdata, Uint8 * stream, int len);
|
|
|
|
int silence;
|
2008-08-25 15:08:59 +00:00
|
|
|
int stream_max_len;
|
|
|
|
|
|
|
|
/* For streaming when the buffer sizes don't match up */
|
|
|
|
Uint8 *istream;
|
|
|
|
int istream_len;
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
/* Perform any thread setup */
|
2006-10-17 09:15:21 +00:00
|
|
|
device->threadid = SDL_ThreadID();
|
|
|
|
current_audio.impl.ThreadInit(device);
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
/* Set up the mixing function */
|
2006-10-17 09:15:21 +00:00
|
|
|
fill = device->spec.callback;
|
|
|
|
udata = device->spec.userdata;
|
2001-05-10 20:13:29 +00:00
|
|
|
|
2008-08-25 15:08:59 +00:00
|
|
|
/* By default do not stream */
|
|
|
|
device->use_streamer = 0;
|
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
if (device->convert.needed) {
|
|
|
|
if (device->convert.src_format == AUDIO_U8) {
|
2006-07-10 21:04:37 +00:00
|
|
|
silence = 0x80;
|
|
|
|
} else {
|
|
|
|
silence = 0;
|
|
|
|
}
|
2008-08-25 15:08:59 +00:00
|
|
|
|
|
|
|
/* If the result of the conversion alters the length, i.e. resampling is being used, use the streamer */
|
|
|
|
if (device->convert.len_mult != 1 || device->convert.len_div != 1) {
|
|
|
|
/* The streamer's maximum length should be twice whichever is larger: spec.size or len_cvt */
|
|
|
|
stream_max_len = 2 * device->spec.size;
|
|
|
|
if (device->convert.len_mult > device->convert.len_div) {
|
|
|
|
stream_max_len *= device->convert.len_mult;
|
|
|
|
stream_max_len /= device->convert.len_div;
|
|
|
|
}
|
|
|
|
if (SDL_StreamInit(&device->streamer, stream_max_len, silence) <
|
|
|
|
0)
|
|
|
|
return -1;
|
|
|
|
device->use_streamer = 1;
|
|
|
|
|
|
|
|
/* istream_len should be the length of what we grab from the callback and feed to conversion,
|
|
|
|
so that we get close to spec_size. I.e. we want device.spec_size = istream_len * u / d
|
|
|
|
*/
|
|
|
|
istream_len =
|
|
|
|
device->spec.size * device->convert.len_div /
|
|
|
|
device->convert.len_mult;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* stream_len = device->convert.len; */
|
|
|
|
stream_len = device->spec.size;
|
2006-07-10 21:04:37 +00:00
|
|
|
} else {
|
2006-10-17 09:15:21 +00:00
|
|
|
silence = device->spec.silence;
|
|
|
|
stream_len = device->spec.size;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-03-21 00:56:10 +00:00
|
|
|
|
2008-08-25 15:08:59 +00:00
|
|
|
/* Determine if the streamer is necessary here */
|
|
|
|
if (device->use_streamer == 1) {
|
|
|
|
/* This code is almost the same as the old code. The difference is, instead of reding
|
|
|
|
directly from the callback into "stream", then converting and sending the audio off,
|
|
|
|
we go: callback -> "istream" -> (conversion) -> streamer -> stream -> device.
|
|
|
|
However, reading and writing with streamer are done separately:
|
|
|
|
- We only call the callback and write to the streamer when the streamer does not
|
|
|
|
contain enough samples to output to the device.
|
|
|
|
- We only read from the streamer and tell the device to play when the streamer
|
|
|
|
does have enough samples to output.
|
|
|
|
This allows us to perform resampling in the conversion step, where the output of the
|
|
|
|
resampling process can be any number. We will have to see what a good size for the
|
|
|
|
stream's maximum length is, but I suspect 2*max(len_cvt, stream_len) is a good figure.
|
|
|
|
*/
|
|
|
|
while (device->enabled) {
|
|
|
|
/* Only read in audio if the streamer doesn't have enough already (if it does not have enough samples to output) */
|
|
|
|
if (SDL_StreamLength(&device->streamer) < stream_len) {
|
|
|
|
/* Set up istream */
|
|
|
|
if (device->convert.needed) {
|
|
|
|
if (device->convert.buf) {
|
|
|
|
istream = device->convert.buf;
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
istream = current_audio.impl.GetDeviceBuf(device);
|
|
|
|
if (istream == NULL) {
|
|
|
|
istream = device->fake_stream;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Read from the callback into the _input_ stream */
|
|
|
|
if (!device->paused) {
|
|
|
|
SDL_mutexP(device->mixer_lock);
|
|
|
|
(*fill) (udata, istream, istream_len);
|
|
|
|
SDL_mutexV(device->mixer_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert the audio if necessary and write to the streamer */
|
|
|
|
if (device->convert.needed) {
|
|
|
|
SDL_ConvertAudio(&device->convert);
|
|
|
|
if (istream == NULL) {
|
|
|
|
istream = device->fake_stream;
|
|
|
|
}
|
|
|
|
/*SDL_memcpy(istream, device->convert.buf, device->convert.len_cvt); */
|
|
|
|
SDL_StreamWrite(&device->streamer, device->convert.buf,
|
|
|
|
device->convert.len_cvt);
|
|
|
|
} else {
|
|
|
|
SDL_StreamWrite(&device->streamer, istream, istream_len);
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2008-08-25 15:08:59 +00:00
|
|
|
|
|
|
|
/* Only output audio if the streamer has enough to output */
|
|
|
|
if (SDL_StreamLength(&device->streamer) >= stream_len) {
|
|
|
|
/* Set up the output stream */
|
|
|
|
if (device->convert.needed) {
|
|
|
|
if (device->convert.buf) {
|
|
|
|
stream = device->convert.buf;
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
stream = current_audio.impl.GetDeviceBuf(device);
|
|
|
|
if (stream == NULL) {
|
|
|
|
stream = device->fake_stream;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now read from the streamer */
|
|
|
|
SDL_StreamRead(&device->streamer, stream, stream_len);
|
|
|
|
|
|
|
|
/* Ready current buffer for play and change current buffer */
|
|
|
|
if (stream != device->fake_stream) {
|
|
|
|
current_audio.impl.PlayDevice(device);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for an audio buffer to become available */
|
|
|
|
if (stream == device->fake_stream) {
|
|
|
|
SDL_Delay((device->spec.samples * 1000) /
|
|
|
|
device->spec.freq);
|
|
|
|
} else {
|
|
|
|
current_audio.impl.WaitDevice(device);
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2001-05-10 20:13:29 +00:00
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2008-08-25 15:08:59 +00:00
|
|
|
} else {
|
|
|
|
/* Otherwise, do not use the streamer. This is the old code. */
|
|
|
|
|
|
|
|
/* Loop, filling the audio buffers */
|
|
|
|
while (device->enabled) {
|
|
|
|
|
|
|
|
/* Fill the current buffer with sound */
|
|
|
|
if (device->convert.needed) {
|
|
|
|
if (device->convert.buf) {
|
|
|
|
stream = device->convert.buf;
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
stream = current_audio.impl.GetDeviceBuf(device);
|
|
|
|
if (stream == NULL) {
|
|
|
|
stream = device->fake_stream;
|
|
|
|
}
|
|
|
|
}
|
2001-05-10 20:13:29 +00:00
|
|
|
|
2008-08-25 15:08:59 +00:00
|
|
|
if (!device->paused) {
|
|
|
|
SDL_mutexP(device->mixer_lock);
|
|
|
|
(*fill) (udata, stream, stream_len);
|
|
|
|
SDL_mutexV(device->mixer_lock);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
2008-08-25 15:08:59 +00:00
|
|
|
/* Convert the audio if necessary */
|
|
|
|
if (device->convert.needed) {
|
|
|
|
SDL_ConvertAudio(&device->convert);
|
|
|
|
stream = current_audio.impl.GetDeviceBuf(device);
|
|
|
|
if (stream == NULL) {
|
|
|
|
stream = device->fake_stream;
|
|
|
|
}
|
|
|
|
SDL_memcpy(stream, device->convert.buf,
|
|
|
|
device->convert.len_cvt);
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2008-08-25 15:08:59 +00:00
|
|
|
/* Ready current buffer for play and change current buffer */
|
|
|
|
if (stream != device->fake_stream) {
|
|
|
|
current_audio.impl.PlayDevice(device);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for an audio buffer to become available */
|
|
|
|
if (stream == device->fake_stream) {
|
|
|
|
SDL_Delay((device->spec.samples * 1000) / device->spec.freq);
|
|
|
|
} else {
|
|
|
|
current_audio.impl.WaitDevice(device);
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait for the audio to drain.. */
|
2006-10-17 09:15:21 +00:00
|
|
|
current_audio.impl.WaitDone(device);
|
2001-05-10 20:13:29 +00:00
|
|
|
|
2008-08-25 15:08:59 +00:00
|
|
|
/* If necessary, deinit the streamer */
|
|
|
|
if (device->use_streamer == 1)
|
|
|
|
SDL_StreamDeinit(&device->streamer);
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
return (0);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2002-03-30 19:48:56 +00:00
|
|
|
|
First shot at new audio data types (int32 and float32).
Notable changes:
- Converters between types are autogenerated. Instead of making multiple
passes over the data with seperate filters for endianess, size, signedness,
etc, converting between data types is always one specialized filter. This
simplifies SDL_BuildAudioCVT(), which otherwise had a million edge cases
with the new types, and makes the actually conversions more CPU cache
friendly. Left a stub for adding specific optimized versions of these
routines (SSE/MMX/Altivec, assembler, etc)
- Autogenerated converters are built by SDL/src/audio/sdlgenaudiocvt.pl. This
does not need to be run unless tweaking the code, and thus doesn't need
integration into the build system.
- Went through all the drivers and tried to weed out all the "Uint16"
references that are better specified with the new SDL_AudioFormat typedef.
- Cleaned out a bunch of hardcoded bitwise magic numbers and replaced them
with new SDL_AUDIO_* macros.
- Added initial float32 and int32 support code. Theoretically, existing
drivers will push these through converters to get the data they want to
feed to the hardware.
Still TODO:
- Optimize and debug new converters.
- Update the CoreAudio backend to accept float32 data directly.
- Other backends, too?
- SDL_LoadWAV() needs to be updated to support int32 and float32 .wav files
(both of which exist and can be generated by 'sox' for testing purposes).
- Update the mixer to handle new datatypes.
- Optionally update SDL_sound and SDL_mixer, etc.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402029
2006-08-24 12:10:46 +00:00
|
|
|
static SDL_AudioFormat
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_ParseAudioFormat(const char *string)
|
2006-05-09 08:52:54 +00:00
|
|
|
{
|
2006-11-29 10:26:32 +00:00
|
|
|
#define CHECK_FMT_STRING(x) if (SDL_strcmp(string, #x) == 0) return AUDIO_##x
|
2006-10-17 09:15:21 +00:00
|
|
|
CHECK_FMT_STRING(U8);
|
|
|
|
CHECK_FMT_STRING(S8);
|
|
|
|
CHECK_FMT_STRING(U16LSB);
|
|
|
|
CHECK_FMT_STRING(S16LSB);
|
|
|
|
CHECK_FMT_STRING(U16MSB);
|
|
|
|
CHECK_FMT_STRING(S16MSB);
|
|
|
|
CHECK_FMT_STRING(U16SYS);
|
|
|
|
CHECK_FMT_STRING(S16SYS);
|
|
|
|
CHECK_FMT_STRING(U16);
|
|
|
|
CHECK_FMT_STRING(S16);
|
|
|
|
CHECK_FMT_STRING(S32LSB);
|
|
|
|
CHECK_FMT_STRING(S32MSB);
|
|
|
|
CHECK_FMT_STRING(S32SYS);
|
|
|
|
CHECK_FMT_STRING(S32);
|
|
|
|
CHECK_FMT_STRING(F32LSB);
|
|
|
|
CHECK_FMT_STRING(F32MSB);
|
|
|
|
CHECK_FMT_STRING(F32SYS);
|
|
|
|
CHECK_FMT_STRING(F32);
|
2006-10-28 16:48:03 +00:00
|
|
|
#undef CHECK_FMT_STRING
|
2006-10-17 09:15:21 +00:00
|
|
|
return 0;
|
2006-05-09 08:52:54 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
int
|
|
|
|
SDL_GetNumAudioDrivers(void)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
return (SDL_arraysize(bootstrap) - 1);
|
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
const char *
|
|
|
|
SDL_GetAudioDriver(int index)
|
|
|
|
{
|
|
|
|
if (index >= 0 && index < SDL_GetNumAudioDrivers()) {
|
|
|
|
return (bootstrap[index]->name);
|
|
|
|
}
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
SDL_AudioInit(const char *driver_name)
|
|
|
|
{
|
2006-10-17 09:15:21 +00:00
|
|
|
int i = 0;
|
|
|
|
int initialized = 0;
|
|
|
|
int tried_to_init = 0;
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
if (SDL_WasInit(SDL_INIT_AUDIO)) {
|
2006-10-28 16:48:03 +00:00
|
|
|
SDL_AudioQuit(); /* shutdown driver if already running. */
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
2006-10-28 16:48:03 +00:00
|
|
|
SDL_memset(¤t_audio, '\0', sizeof(current_audio));
|
|
|
|
SDL_memset(open_devices, '\0', sizeof(open_devices));
|
2006-10-17 09:15:21 +00:00
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
/* Select the proper audio driver */
|
2006-07-15 19:30:18 +00:00
|
|
|
if (driver_name == NULL) {
|
|
|
|
driver_name = SDL_getenv("SDL_AUDIODRIVER");
|
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
for (i = 0; (!initialized) && (bootstrap[i]); ++i) {
|
|
|
|
/* make sure we should even try this driver before doing so... */
|
|
|
|
const AudioBootStrap *backend = bootstrap[i];
|
2006-10-28 16:48:03 +00:00
|
|
|
if (((driver_name) && (SDL_strcasecmp(backend->name, driver_name))) ||
|
|
|
|
((!driver_name) && (backend->demand_only))) {
|
2006-10-17 09:15:21 +00:00
|
|
|
continue;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
tried_to_init = 1;
|
2006-10-28 16:48:03 +00:00
|
|
|
SDL_memset(¤t_audio, 0, sizeof(current_audio));
|
2006-10-17 09:15:21 +00:00
|
|
|
current_audio.name = backend->name;
|
|
|
|
current_audio.desc = backend->desc;
|
|
|
|
initialized = backend->init(¤t_audio.impl);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
if (!initialized) {
|
|
|
|
/* specific drivers will set the error message if they fail... */
|
|
|
|
if (!tried_to_init) {
|
2006-07-10 21:04:37 +00:00
|
|
|
if (driver_name) {
|
|
|
|
SDL_SetError("%s not available", driver_name);
|
|
|
|
} else {
|
|
|
|
SDL_SetError("No available audio device");
|
|
|
|
}
|
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
2006-10-28 16:48:03 +00:00
|
|
|
SDL_memset(¤t_audio, 0, sizeof(current_audio));
|
|
|
|
return (-1); /* No driver was available, so fail. */
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
finalize_audio_entry_points();
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
return (0);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
/*
|
|
|
|
* Get the current audio driver name
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
SDL_GetCurrentAudioDriver()
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-10-17 09:15:21 +00:00
|
|
|
return current_audio.name;
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
int
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_GetNumAudioDevices(int iscapture)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-10-17 09:15:21 +00:00
|
|
|
if (!SDL_WasInit(SDL_INIT_AUDIO)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if ((iscapture) && (!current_audio.impl.HasCaptureSupport)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
if ((iscapture) && (current_audio.impl.OnlyHasDefaultInputDevice)) {
|
|
|
|
return 1;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
if ((!iscapture) && (current_audio.impl.OnlyHasDefaultOutputDevice)) {
|
|
|
|
return 1;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
return current_audio.impl.DetectDevices(iscapture);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char *
|
|
|
|
SDL_GetAudioDeviceName(int index, int iscapture)
|
|
|
|
{
|
|
|
|
if (!SDL_WasInit(SDL_INIT_AUDIO)) {
|
|
|
|
SDL_SetError("Audio subsystem is not initialized");
|
|
|
|
return NULL;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
if ((iscapture) && (!current_audio.impl.HasCaptureSupport)) {
|
|
|
|
SDL_SetError("No capture support");
|
|
|
|
return NULL;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
if (index < 0) {
|
|
|
|
SDL_SetError("No such device");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((iscapture) && (current_audio.impl.OnlyHasDefaultInputDevice)) {
|
|
|
|
return DEFAULT_INPUT_DEVNAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((!iscapture) && (current_audio.impl.OnlyHasDefaultOutputDevice)) {
|
|
|
|
return DEFAULT_OUTPUT_DEVNAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
return current_audio.impl.GetDeviceName(index, iscapture);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2006-10-28 16:48:03 +00:00
|
|
|
close_audio_device(SDL_AudioDevice * device)
|
2006-10-17 09:15:21 +00:00
|
|
|
{
|
|
|
|
device->enabled = 0;
|
|
|
|
if (device->thread != NULL) {
|
|
|
|
SDL_WaitThread(device->thread, NULL);
|
|
|
|
}
|
|
|
|
if (device->mixer_lock != NULL) {
|
|
|
|
SDL_DestroyMutex(device->mixer_lock);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
if (device->fake_stream != NULL) {
|
|
|
|
SDL_FreeAudioMem(device->fake_stream);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
if (device->convert.needed) {
|
|
|
|
SDL_FreeAudioMem(device->convert.buf);
|
|
|
|
}
|
|
|
|
if (device->opened) {
|
|
|
|
current_audio.impl.CloseDevice(device);
|
|
|
|
device->opened = 0;
|
|
|
|
}
|
|
|
|
SDL_FreeAudioMem(device);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sanity check desired AudioSpec for SDL_OpenAudio() in (orig).
|
|
|
|
* Fills in a sanitized copy in (prepared).
|
|
|
|
* Returns non-zero if okay, zero on fatal parameters in (orig).
|
|
|
|
*/
|
|
|
|
static int
|
2006-10-28 16:48:03 +00:00
|
|
|
prepare_audiospec(const SDL_AudioSpec * orig, SDL_AudioSpec * prepared)
|
2006-10-17 09:15:21 +00:00
|
|
|
{
|
2006-10-28 16:48:03 +00:00
|
|
|
SDL_memcpy(prepared, orig, sizeof(SDL_AudioSpec));
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
if (orig->callback == NULL) {
|
|
|
|
SDL_SetError("SDL_OpenAudio() passed a NULL callback");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (orig->freq == 0) {
|
|
|
|
const char *env = SDL_getenv("SDL_AUDIO_FREQUENCY");
|
2006-10-28 16:48:03 +00:00
|
|
|
if ((!env) || ((prepared->freq = SDL_atoi(env)) == 0)) {
|
|
|
|
prepared->freq = 22050; /* a reasonable default */
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
if (orig->format == 0) {
|
|
|
|
const char *env = SDL_getenv("SDL_AUDIO_FORMAT");
|
|
|
|
if ((!env) || ((prepared->format = SDL_ParseAudioFormat(env)) == 0)) {
|
2006-10-28 16:48:03 +00:00
|
|
|
prepared->format = AUDIO_S16; /* a reasonable default */
|
2006-10-17 09:15:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (orig->channels) {
|
2006-10-28 16:48:03 +00:00
|
|
|
case 0:{
|
|
|
|
const char *env = SDL_getenv("SDL_AUDIO_CHANNELS");
|
2007-07-03 09:55:29 +00:00
|
|
|
if ((!env) || ((prepared->channels = (Uint8) SDL_atoi(env)) == 0)) {
|
2006-10-28 16:48:03 +00:00
|
|
|
prepared->channels = 2; /* a reasonable default */
|
|
|
|
}
|
|
|
|
break;
|
2006-10-17 09:15:21 +00:00
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
case 1: /* Mono */
|
|
|
|
case 2: /* Stereo */
|
|
|
|
case 4: /* surround */
|
|
|
|
case 6: /* surround with center and lfe */
|
|
|
|
break;
|
|
|
|
default:
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_SetError("Unsupported number of audio channels.");
|
|
|
|
return 0;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
if (orig->samples == 0) {
|
|
|
|
const char *env = SDL_getenv("SDL_AUDIO_SAMPLES");
|
2006-10-28 16:48:03 +00:00
|
|
|
if ((!env) || ((prepared->samples = (Uint16) SDL_atoi(env)) == 0)) {
|
2006-10-17 09:15:21 +00:00
|
|
|
/* Pick a default of ~46 ms at desired frequency */
|
|
|
|
/* !!! FIXME: remove this when the non-Po2 resampling is in. */
|
|
|
|
const int samples = (prepared->freq / 1000) * 46;
|
|
|
|
int power2 = 1;
|
|
|
|
while (power2 < samples) {
|
|
|
|
power2 *= 2;
|
|
|
|
}
|
|
|
|
prepared->samples = power2;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
/* Calculate the silence and size of the audio specification */
|
|
|
|
SDL_CalculateAudioSpec(prepared);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static SDL_AudioDeviceID
|
|
|
|
open_audio_device(const char *devname, int iscapture,
|
2006-10-28 16:48:03 +00:00
|
|
|
const SDL_AudioSpec * _desired, SDL_AudioSpec * obtained,
|
|
|
|
int min_id)
|
2006-10-17 09:15:21 +00:00
|
|
|
{
|
|
|
|
SDL_AudioDeviceID id = 0;
|
|
|
|
SDL_AudioSpec desired;
|
|
|
|
SDL_AudioDevice *device;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
if (!SDL_WasInit(SDL_INIT_AUDIO)) {
|
|
|
|
SDL_SetError("Audio subsystem is not initialized");
|
|
|
|
return 0;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
if ((iscapture) && (!current_audio.impl.HasCaptureSupport)) {
|
|
|
|
SDL_SetError("No capture support");
|
|
|
|
return 0;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
if (!prepare_audiospec(_desired, &desired)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
/* If app doesn't care about a specific device, let the user override. */
|
|
|
|
if (devname == NULL) {
|
|
|
|
devname = SDL_getenv("SDL_AUDIO_DEVICE_NAME");
|
|
|
|
}
|
2001-05-10 20:13:29 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
/*
|
|
|
|
* Catch device names at the high level for the simple case...
|
|
|
|
* This lets us have a basic "device enumeration" for systems that
|
|
|
|
* don't have multiple devices, but makes sure the device name is
|
|
|
|
* always NULL when it hits the low level.
|
|
|
|
*
|
|
|
|
* Also make sure that the simple case prevents multiple simultaneous
|
|
|
|
* opens of the default system device.
|
|
|
|
*/
|
2001-05-10 20:13:29 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
if ((iscapture) && (current_audio.impl.OnlyHasDefaultInputDevice)) {
|
|
|
|
if ((devname) && (SDL_strcmp(devname, DEFAULT_INPUT_DEVNAME) != 0)) {
|
|
|
|
SDL_SetError("No such device");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
devname = NULL;
|
2001-05-10 20:13:29 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
for (i = 0; i < SDL_arraysize(open_devices); i++) {
|
|
|
|
if ((open_devices[i]) && (open_devices[i]->iscapture)) {
|
|
|
|
SDL_SetError("Audio device already open");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
if ((!iscapture) && (current_audio.impl.OnlyHasDefaultOutputDevice)) {
|
|
|
|
if ((devname) && (SDL_strcmp(devname, DEFAULT_OUTPUT_DEVNAME) != 0)) {
|
|
|
|
SDL_SetError("No such device");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
devname = NULL;
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
for (i = 0; i < SDL_arraysize(open_devices); i++) {
|
|
|
|
if ((open_devices[i]) && (!open_devices[i]->iscapture)) {
|
|
|
|
SDL_SetError("Audio device already open");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2006-10-28 16:48:03 +00:00
|
|
|
device = (SDL_AudioDevice *) SDL_AllocAudioMem(sizeof(SDL_AudioDevice));
|
2006-10-17 09:15:21 +00:00
|
|
|
if (device == NULL) {
|
|
|
|
SDL_OutOfMemory();
|
|
|
|
return 0;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-10-28 16:48:03 +00:00
|
|
|
SDL_memset(device, '\0', sizeof(SDL_AudioDevice));
|
|
|
|
SDL_memcpy(&device->spec, &desired, sizeof(SDL_AudioSpec));
|
2006-10-17 09:15:21 +00:00
|
|
|
device->enabled = 1;
|
|
|
|
device->paused = 1;
|
|
|
|
device->iscapture = iscapture;
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
/* Create a semaphore for locking the sound buffers */
|
|
|
|
if (!current_audio.impl.SkipMixerLock) {
|
|
|
|
device->mixer_lock = SDL_CreateMutex();
|
|
|
|
if (device->mixer_lock == NULL) {
|
|
|
|
close_audio_device(device);
|
|
|
|
SDL_SetError("Couldn't create mixer lock");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!current_audio.impl.OpenDevice(device, devname, iscapture)) {
|
|
|
|
close_audio_device(device);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
device->opened = 1;
|
2006-07-10 21:04:37 +00:00
|
|
|
|
|
|
|
/* If the audio driver changes the buffer size, accept it */
|
2006-10-17 09:15:21 +00:00
|
|
|
if (device->spec.samples != desired.samples) {
|
|
|
|
desired.samples = device->spec.samples;
|
|
|
|
SDL_CalculateAudioSpec(&device->spec);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate a fake audio memory buffer */
|
2006-10-17 09:15:21 +00:00
|
|
|
device->fake_stream = SDL_AllocAudioMem(device->spec.size);
|
|
|
|
if (device->fake_stream == NULL) {
|
|
|
|
close_audio_device(device);
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_OutOfMemory();
|
2006-10-17 09:15:21 +00:00
|
|
|
return 0;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* See if we need to do any conversion */
|
|
|
|
if (obtained != NULL) {
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_memcpy(obtained, &device->spec, sizeof(SDL_AudioSpec));
|
|
|
|
} else if (desired.freq != device->spec.freq ||
|
|
|
|
desired.format != device->spec.format ||
|
|
|
|
desired.channels != device->spec.channels) {
|
2006-07-10 21:04:37 +00:00
|
|
|
/* Build an audio conversion block */
|
2006-10-17 09:15:21 +00:00
|
|
|
if (SDL_BuildAudioCVT(&device->convert,
|
|
|
|
desired.format, desired.channels,
|
|
|
|
desired.freq,
|
|
|
|
device->spec.format, device->spec.channels,
|
|
|
|
device->spec.freq) < 0) {
|
|
|
|
close_audio_device(device);
|
|
|
|
return 0;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
if (device->convert.needed) {
|
2006-10-28 16:48:03 +00:00
|
|
|
device->convert.len = (int) (((double) desired.size) /
|
|
|
|
device->convert.len_ratio);
|
2006-10-27 20:19:48 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
device->convert.buf =
|
|
|
|
(Uint8 *) SDL_AllocAudioMem(device->convert.len *
|
|
|
|
device->convert.len_mult);
|
|
|
|
if (device->convert.buf == NULL) {
|
|
|
|
close_audio_device(device);
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_OutOfMemory();
|
2006-10-17 09:15:21 +00:00
|
|
|
return 0;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
/* Find an available device ID and store the structure... */
|
2006-10-28 16:48:03 +00:00
|
|
|
for (id = min_id - 1; id < SDL_arraysize(open_devices); id++) {
|
2006-10-17 09:15:21 +00:00
|
|
|
if (open_devices[id] == NULL) {
|
|
|
|
open_devices[id] = device;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id == SDL_arraysize(open_devices)) {
|
|
|
|
SDL_SetError("Too many open audio devices");
|
|
|
|
close_audio_device(device);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
/* Start the audio thread if necessary */
|
2006-10-17 09:15:21 +00:00
|
|
|
if (!current_audio.impl.ProvidesOwnCallbackThread) {
|
2006-07-10 21:04:37 +00:00
|
|
|
/* Start the audio thread */
|
2006-10-17 09:15:21 +00:00
|
|
|
/* !!! FIXME: this is nasty. */
|
2006-02-21 08:46:50 +00:00
|
|
|
#if (defined(__WIN32__) && !defined(_WIN32_WCE)) && !defined(HAVE_LIBC)
|
2006-02-06 08:28:51 +00:00
|
|
|
#undef SDL_CreateThread
|
2006-10-17 09:15:21 +00:00
|
|
|
device->thread = SDL_CreateThread(SDL_RunAudio, device, NULL, NULL);
|
2006-02-06 08:28:51 +00:00
|
|
|
#else
|
2006-10-17 09:15:21 +00:00
|
|
|
device->thread = SDL_CreateThread(SDL_RunAudio, device);
|
2006-07-10 21:04:37 +00:00
|
|
|
#endif
|
2006-10-17 09:15:21 +00:00
|
|
|
if (device->thread == NULL) {
|
2006-10-28 16:48:03 +00:00
|
|
|
SDL_CloseAudioDevice(id + 1);
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_SetError("Couldn't create audio thread");
|
2006-10-17 09:15:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-28 16:48:03 +00:00
|
|
|
return id + 1;
|
2006-10-17 09:15:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
SDL_OpenAudio(const SDL_AudioSpec * desired, SDL_AudioSpec * obtained)
|
|
|
|
{
|
|
|
|
SDL_AudioDeviceID id = 0;
|
|
|
|
|
|
|
|
/* Start up the audio driver, if necessary. This is legacy behaviour! */
|
|
|
|
if (!SDL_WasInit(SDL_INIT_AUDIO)) {
|
|
|
|
if (SDL_InitSubSystem(SDL_INIT_AUDIO) < 0) {
|
2006-07-10 21:04:37 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
/* SDL_OpenAudio() is legacy and can only act on Device ID #1. */
|
|
|
|
if (open_devices[0] != NULL) {
|
|
|
|
SDL_SetError("Audio device is already opened");
|
|
|
|
return (-1);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2001-05-10 20:13:29 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
id = open_audio_device(NULL, 0, desired, obtained, 1);
|
2006-10-28 16:48:03 +00:00
|
|
|
if (id > 1) { /* this should never happen in theory... */
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_CloseAudioDevice(id);
|
2006-10-28 16:48:03 +00:00
|
|
|
SDL_SetError("Internal error"); /* MUST be Device ID #1! */
|
2006-10-17 09:15:21 +00:00
|
|
|
return (-1);
|
|
|
|
}
|
2001-05-10 20:13:29 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
return ((id == 0) ? -1 : 0);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_AudioDeviceID
|
|
|
|
SDL_OpenAudioDevice(const char *device, int iscapture,
|
2006-10-28 16:48:03 +00:00
|
|
|
const SDL_AudioSpec * desired, SDL_AudioSpec * obtained)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-10-17 09:15:21 +00:00
|
|
|
return open_audio_device(device, iscapture, desired, obtained, 2);
|
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_audiostatus
|
|
|
|
SDL_GetAudioDeviceStatus(SDL_AudioDeviceID devid)
|
|
|
|
{
|
|
|
|
SDL_AudioDevice *device = get_audio_device(devid);
|
|
|
|
SDL_audiostatus status = SDL_AUDIO_STOPPED;
|
|
|
|
if (device && device->enabled) {
|
|
|
|
if (device->paused) {
|
2006-07-10 21:04:37 +00:00
|
|
|
status = SDL_AUDIO_PAUSED;
|
|
|
|
} else {
|
|
|
|
status = SDL_AUDIO_PLAYING;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (status);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
SDL_audiostatus
|
|
|
|
SDL_GetAudioStatus(void)
|
|
|
|
{
|
|
|
|
return SDL_GetAudioDeviceStatus(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
SDL_PauseAudioDevice(SDL_AudioDeviceID devid, int pause_on)
|
|
|
|
{
|
|
|
|
SDL_AudioDevice *device = get_audio_device(devid);
|
|
|
|
if (device) {
|
|
|
|
device->paused = pause_on;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
void
|
|
|
|
SDL_PauseAudio(int pause_on)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_PauseAudioDevice(1, pause_on);
|
|
|
|
}
|
|
|
|
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
void
|
|
|
|
SDL_LockAudioDevice(SDL_AudioDeviceID devid)
|
|
|
|
{
|
|
|
|
/* Obtain a lock on the mixing buffers */
|
|
|
|
SDL_AudioDevice *device = get_audio_device(devid);
|
|
|
|
if (device) {
|
|
|
|
current_audio.impl.LockDevice(device);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
void
|
|
|
|
SDL_LockAudio(void)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_LockAudioDevice(1);
|
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
void
|
|
|
|
SDL_UnlockAudioDevice(SDL_AudioDeviceID devid)
|
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
/* Obtain a lock on the mixing buffers */
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_AudioDevice *device = get_audio_device(devid);
|
|
|
|
if (device) {
|
|
|
|
current_audio.impl.UnlockDevice(device);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
void
|
|
|
|
SDL_UnlockAudio(void)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_UnlockAudioDevice(1);
|
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
void
|
|
|
|
SDL_CloseAudioDevice(SDL_AudioDeviceID devid)
|
|
|
|
{
|
|
|
|
SDL_AudioDevice *device = get_audio_device(devid);
|
|
|
|
if (device) {
|
|
|
|
close_audio_device(device);
|
2006-10-28 16:48:03 +00:00
|
|
|
open_devices[devid - 1] = NULL;
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
void
|
|
|
|
SDL_CloseAudio(void)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_CloseAudioDevice(1);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
void
|
|
|
|
SDL_AudioQuit(void)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-10-17 09:15:21 +00:00
|
|
|
SDL_AudioDeviceID i;
|
|
|
|
for (i = 0; i < SDL_arraysize(open_devices); i++) {
|
|
|
|
SDL_CloseAudioDevice(i);
|
2006-07-10 21:04:37 +00:00
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
/* Free the driver data */
|
|
|
|
current_audio.impl.Deinitialize();
|
2006-10-28 16:48:03 +00:00
|
|
|
SDL_memset(¤t_audio, '\0', sizeof(current_audio));
|
|
|
|
SDL_memset(open_devices, '\0', sizeof(open_devices));
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
First shot at new audio data types (int32 and float32).
Notable changes:
- Converters between types are autogenerated. Instead of making multiple
passes over the data with seperate filters for endianess, size, signedness,
etc, converting between data types is always one specialized filter. This
simplifies SDL_BuildAudioCVT(), which otherwise had a million edge cases
with the new types, and makes the actually conversions more CPU cache
friendly. Left a stub for adding specific optimized versions of these
routines (SSE/MMX/Altivec, assembler, etc)
- Autogenerated converters are built by SDL/src/audio/sdlgenaudiocvt.pl. This
does not need to be run unless tweaking the code, and thus doesn't need
integration into the build system.
- Went through all the drivers and tried to weed out all the "Uint16"
references that are better specified with the new SDL_AudioFormat typedef.
- Cleaned out a bunch of hardcoded bitwise magic numbers and replaced them
with new SDL_AUDIO_* macros.
- Added initial float32 and int32 support code. Theoretically, existing
drivers will push these through converters to get the data they want to
feed to the hardware.
Still TODO:
- Optimize and debug new converters.
- Update the CoreAudio backend to accept float32 data directly.
- Other backends, too?
- SDL_LoadWAV() needs to be updated to support int32 and float32 .wav files
(both of which exist and can be generated by 'sox' for testing purposes).
- Update the mixer to handle new datatypes.
- Optionally update SDL_sound and SDL_mixer, etc.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402029
2006-08-24 12:10:46 +00:00
|
|
|
#define NUM_FORMATS 10
|
2001-04-26 16:45:43 +00:00
|
|
|
static int format_idx;
|
|
|
|
static int format_idx_sub;
|
First shot at new audio data types (int32 and float32).
Notable changes:
- Converters between types are autogenerated. Instead of making multiple
passes over the data with seperate filters for endianess, size, signedness,
etc, converting between data types is always one specialized filter. This
simplifies SDL_BuildAudioCVT(), which otherwise had a million edge cases
with the new types, and makes the actually conversions more CPU cache
friendly. Left a stub for adding specific optimized versions of these
routines (SSE/MMX/Altivec, assembler, etc)
- Autogenerated converters are built by SDL/src/audio/sdlgenaudiocvt.pl. This
does not need to be run unless tweaking the code, and thus doesn't need
integration into the build system.
- Went through all the drivers and tried to weed out all the "Uint16"
references that are better specified with the new SDL_AudioFormat typedef.
- Cleaned out a bunch of hardcoded bitwise magic numbers and replaced them
with new SDL_AUDIO_* macros.
- Added initial float32 and int32 support code. Theoretically, existing
drivers will push these through converters to get the data they want to
feed to the hardware.
Still TODO:
- Optimize and debug new converters.
- Update the CoreAudio backend to accept float32 data directly.
- Other backends, too?
- SDL_LoadWAV() needs to be updated to support int32 and float32 .wav files
(both of which exist and can be generated by 'sox' for testing purposes).
- Update the mixer to handle new datatypes.
- Optionally update SDL_sound and SDL_mixer, etc.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402029
2006-08-24 12:10:46 +00:00
|
|
|
static SDL_AudioFormat format_list[NUM_FORMATS][NUM_FORMATS] = {
|
2006-07-10 21:04:37 +00:00
|
|
|
{AUDIO_U8, AUDIO_S8, AUDIO_S16LSB, AUDIO_S16MSB, AUDIO_U16LSB,
|
First shot at new audio data types (int32 and float32).
Notable changes:
- Converters between types are autogenerated. Instead of making multiple
passes over the data with seperate filters for endianess, size, signedness,
etc, converting between data types is always one specialized filter. This
simplifies SDL_BuildAudioCVT(), which otherwise had a million edge cases
with the new types, and makes the actually conversions more CPU cache
friendly. Left a stub for adding specific optimized versions of these
routines (SSE/MMX/Altivec, assembler, etc)
- Autogenerated converters are built by SDL/src/audio/sdlgenaudiocvt.pl. This
does not need to be run unless tweaking the code, and thus doesn't need
integration into the build system.
- Went through all the drivers and tried to weed out all the "Uint16"
references that are better specified with the new SDL_AudioFormat typedef.
- Cleaned out a bunch of hardcoded bitwise magic numbers and replaced them
with new SDL_AUDIO_* macros.
- Added initial float32 and int32 support code. Theoretically, existing
drivers will push these through converters to get the data they want to
feed to the hardware.
Still TODO:
- Optimize and debug new converters.
- Update the CoreAudio backend to accept float32 data directly.
- Other backends, too?
- SDL_LoadWAV() needs to be updated to support int32 and float32 .wav files
(both of which exist and can be generated by 'sox' for testing purposes).
- Update the mixer to handle new datatypes.
- Optionally update SDL_sound and SDL_mixer, etc.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402029
2006-08-24 12:10:46 +00:00
|
|
|
AUDIO_U16MSB, AUDIO_S32LSB, AUDIO_S32MSB, AUDIO_F32LSB, AUDIO_F32MSB},
|
2006-07-10 21:04:37 +00:00
|
|
|
{AUDIO_S8, AUDIO_U8, AUDIO_S16LSB, AUDIO_S16MSB, AUDIO_U16LSB,
|
First shot at new audio data types (int32 and float32).
Notable changes:
- Converters between types are autogenerated. Instead of making multiple
passes over the data with seperate filters for endianess, size, signedness,
etc, converting between data types is always one specialized filter. This
simplifies SDL_BuildAudioCVT(), which otherwise had a million edge cases
with the new types, and makes the actually conversions more CPU cache
friendly. Left a stub for adding specific optimized versions of these
routines (SSE/MMX/Altivec, assembler, etc)
- Autogenerated converters are built by SDL/src/audio/sdlgenaudiocvt.pl. This
does not need to be run unless tweaking the code, and thus doesn't need
integration into the build system.
- Went through all the drivers and tried to weed out all the "Uint16"
references that are better specified with the new SDL_AudioFormat typedef.
- Cleaned out a bunch of hardcoded bitwise magic numbers and replaced them
with new SDL_AUDIO_* macros.
- Added initial float32 and int32 support code. Theoretically, existing
drivers will push these through converters to get the data they want to
feed to the hardware.
Still TODO:
- Optimize and debug new converters.
- Update the CoreAudio backend to accept float32 data directly.
- Other backends, too?
- SDL_LoadWAV() needs to be updated to support int32 and float32 .wav files
(both of which exist and can be generated by 'sox' for testing purposes).
- Update the mixer to handle new datatypes.
- Optionally update SDL_sound and SDL_mixer, etc.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402029
2006-08-24 12:10:46 +00:00
|
|
|
AUDIO_U16MSB, AUDIO_S32LSB, AUDIO_S32MSB, AUDIO_F32LSB, AUDIO_F32MSB},
|
|
|
|
{AUDIO_S16LSB, AUDIO_S16MSB, AUDIO_U16LSB, AUDIO_U16MSB, AUDIO_S32LSB,
|
|
|
|
AUDIO_S32MSB, AUDIO_F32LSB, AUDIO_F32MSB, AUDIO_U8, AUDIO_S8},
|
|
|
|
{AUDIO_S16MSB, AUDIO_S16LSB, AUDIO_U16MSB, AUDIO_U16LSB, AUDIO_S32MSB,
|
|
|
|
AUDIO_S32LSB, AUDIO_F32MSB, AUDIO_F32LSB, AUDIO_U8, AUDIO_S8},
|
|
|
|
{AUDIO_U16LSB, AUDIO_U16MSB, AUDIO_S16LSB, AUDIO_S16MSB, AUDIO_S32LSB,
|
|
|
|
AUDIO_S32MSB, AUDIO_F32LSB, AUDIO_F32MSB, AUDIO_U8, AUDIO_S8},
|
|
|
|
{AUDIO_U16MSB, AUDIO_U16LSB, AUDIO_S16MSB, AUDIO_S16LSB, AUDIO_S32MSB,
|
|
|
|
AUDIO_S32LSB, AUDIO_F32MSB, AUDIO_F32LSB, AUDIO_U8, AUDIO_S8},
|
2006-08-31 20:59:42 +00:00
|
|
|
{AUDIO_S32LSB, AUDIO_S32MSB, AUDIO_F32LSB, AUDIO_F32MSB, AUDIO_S16LSB,
|
|
|
|
AUDIO_S16MSB, AUDIO_U16LSB, AUDIO_U16MSB, AUDIO_U8, AUDIO_S8},
|
|
|
|
{AUDIO_S32MSB, AUDIO_S32LSB, AUDIO_F32MSB, AUDIO_F32LSB, AUDIO_S16MSB,
|
|
|
|
AUDIO_S16LSB, AUDIO_U16MSB, AUDIO_U16LSB, AUDIO_U8, AUDIO_S8},
|
|
|
|
{AUDIO_F32LSB, AUDIO_F32MSB, AUDIO_S32LSB, AUDIO_S32MSB, AUDIO_S16LSB,
|
|
|
|
AUDIO_S16MSB, AUDIO_U16LSB, AUDIO_U16MSB, AUDIO_U8, AUDIO_S8},
|
|
|
|
{AUDIO_F32MSB, AUDIO_F32LSB, AUDIO_S32MSB, AUDIO_S32LSB, AUDIO_S16MSB,
|
|
|
|
AUDIO_S16LSB, AUDIO_U16MSB, AUDIO_U16LSB, AUDIO_U8, AUDIO_S8},
|
2001-04-26 16:45:43 +00:00
|
|
|
};
|
|
|
|
|
First shot at new audio data types (int32 and float32).
Notable changes:
- Converters between types are autogenerated. Instead of making multiple
passes over the data with seperate filters for endianess, size, signedness,
etc, converting between data types is always one specialized filter. This
simplifies SDL_BuildAudioCVT(), which otherwise had a million edge cases
with the new types, and makes the actually conversions more CPU cache
friendly. Left a stub for adding specific optimized versions of these
routines (SSE/MMX/Altivec, assembler, etc)
- Autogenerated converters are built by SDL/src/audio/sdlgenaudiocvt.pl. This
does not need to be run unless tweaking the code, and thus doesn't need
integration into the build system.
- Went through all the drivers and tried to weed out all the "Uint16"
references that are better specified with the new SDL_AudioFormat typedef.
- Cleaned out a bunch of hardcoded bitwise magic numbers and replaced them
with new SDL_AUDIO_* macros.
- Added initial float32 and int32 support code. Theoretically, existing
drivers will push these through converters to get the data they want to
feed to the hardware.
Still TODO:
- Optimize and debug new converters.
- Update the CoreAudio backend to accept float32 data directly.
- Other backends, too?
- SDL_LoadWAV() needs to be updated to support int32 and float32 .wav files
(both of which exist and can be generated by 'sox' for testing purposes).
- Update the mixer to handle new datatypes.
- Optionally update SDL_sound and SDL_mixer, etc.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402029
2006-08-24 12:10:46 +00:00
|
|
|
SDL_AudioFormat
|
|
|
|
SDL_FirstAudioFormat(SDL_AudioFormat format)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
for (format_idx = 0; format_idx < NUM_FORMATS; ++format_idx) {
|
|
|
|
if (format_list[format_idx][0] == format) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
format_idx_sub = 0;
|
|
|
|
return (SDL_NextAudioFormat());
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
First shot at new audio data types (int32 and float32).
Notable changes:
- Converters between types are autogenerated. Instead of making multiple
passes over the data with seperate filters for endianess, size, signedness,
etc, converting between data types is always one specialized filter. This
simplifies SDL_BuildAudioCVT(), which otherwise had a million edge cases
with the new types, and makes the actually conversions more CPU cache
friendly. Left a stub for adding specific optimized versions of these
routines (SSE/MMX/Altivec, assembler, etc)
- Autogenerated converters are built by SDL/src/audio/sdlgenaudiocvt.pl. This
does not need to be run unless tweaking the code, and thus doesn't need
integration into the build system.
- Went through all the drivers and tried to weed out all the "Uint16"
references that are better specified with the new SDL_AudioFormat typedef.
- Cleaned out a bunch of hardcoded bitwise magic numbers and replaced them
with new SDL_AUDIO_* macros.
- Added initial float32 and int32 support code. Theoretically, existing
drivers will push these through converters to get the data they want to
feed to the hardware.
Still TODO:
- Optimize and debug new converters.
- Update the CoreAudio backend to accept float32 data directly.
- Other backends, too?
- SDL_LoadWAV() needs to be updated to support int32 and float32 .wav files
(both of which exist and can be generated by 'sox' for testing purposes).
- Update the mixer to handle new datatypes.
- Optionally update SDL_sound and SDL_mixer, etc.
--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402029
2006-08-24 12:10:46 +00:00
|
|
|
SDL_AudioFormat
|
2006-07-10 21:04:37 +00:00
|
|
|
SDL_NextAudioFormat(void)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
if ((format_idx == NUM_FORMATS) || (format_idx_sub == NUM_FORMATS)) {
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
return (format_list[format_idx][format_idx_sub++]);
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
void
|
|
|
|
SDL_CalculateAudioSpec(SDL_AudioSpec * spec)
|
2001-04-26 16:45:43 +00:00
|
|
|
{
|
2006-07-10 21:04:37 +00:00
|
|
|
switch (spec->format) {
|
|
|
|
case AUDIO_U8:
|
|
|
|
spec->silence = 0x80;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
spec->silence = 0x00;
|
|
|
|
break;
|
|
|
|
}
|
2006-10-17 09:15:21 +00:00
|
|
|
spec->size = SDL_AUDIO_BITSIZE(spec->format) / 8;
|
2006-07-10 21:04:37 +00:00
|
|
|
spec->size *= spec->channels;
|
|
|
|
spec->size *= spec->samples;
|
2001-04-26 16:45:43 +00:00
|
|
|
}
|
2006-07-10 21:04:37 +00:00
|
|
|
|
2006-10-17 09:15:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Moved here from SDL_mixer.c, since it relies on internals of an opened
|
|
|
|
* audio device (and is deprecated, by the way!).
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
SDL_MixAudio(Uint8 * dst, const Uint8 * src, Uint32 len, int volume)
|
|
|
|
{
|
|
|
|
/* Mix the user-level audio format */
|
|
|
|
SDL_AudioDevice *device = get_audio_device(1);
|
|
|
|
if (device != NULL) {
|
|
|
|
SDL_AudioFormat format;
|
|
|
|
if (device->convert.needed) {
|
|
|
|
format = device->convert.src_format;
|
|
|
|
} else {
|
|
|
|
format = device->spec.format;
|
|
|
|
}
|
|
|
|
SDL_MixAudioFormat(dst, src, format, len, volume);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-10 21:04:37 +00:00
|
|
|
/* vi: set ts=4 sw=4 expandtab: */
|