RetroArch/audio/xaudio.c

116 lines
2.5 KiB
C
Raw Normal View History

/* SSNES - A Super Nintendo Entertainment System (SNES) Emulator frontend for libsnes.
2012-01-08 00:08:18 +00:00
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
*
* Some code herein may be based on code found in BSNES.
*
* SSNES 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 Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* SSNES 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 SSNES.
* If not, see <http://www.gnu.org/licenses/>.
*/
2011-12-24 23:59:46 +00:00
#include "../driver.h"
#include <stdlib.h>
#include "xaudio-c/xaudio-c.h"
2011-12-24 23:59:46 +00:00
#include "../general.h"
typedef struct
{
xaudio2_t *xa;
bool nonblock;
} xa_t;
static void *xa_init(const char *device, unsigned rate, unsigned latency)
{
2011-06-09 21:17:10 +00:00
if (latency < 8)
latency = 8; // Do not allow shenanigans.
2011-12-25 18:31:05 +00:00
xa_t *xa = (xa_t*)calloc(1, sizeof(*xa));
if (!xa)
return NULL;
2011-01-28 19:57:13 +00:00
size_t bufsize = latency * rate / 1000;
2011-01-29 22:23:54 +00:00
SSNES_LOG("XAudio2: Requesting %d ms latency, using %d ms latency.\n", latency, (int)bufsize * 1000 / rate);
2011-01-28 19:57:13 +00:00
xa->xa = xaudio2_new(rate, 2, bufsize * 2 * sizeof(float));
if (!xa->xa)
{
2011-01-28 19:57:13 +00:00
SSNES_ERR("Failed to init XAudio2.\n");
free(xa);
return NULL;
}
2011-12-25 18:31:05 +00:00
return xa;
}
static ssize_t xa_write(void *data, const void *buf, size_t size)
{
2011-12-24 12:46:12 +00:00
xa_t *xa = (xa_t*)data;
if (xa->nonblock)
{
size_t avail = xaudio2_write_avail(xa->xa);
if (avail == 0)
return 0;
if (avail < size)
size = avail;
}
2011-12-25 18:31:05 +00:00
size_t ret = xaudio2_write(xa->xa, buf, size);
if (ret == 0)
return -1;
return ret;
}
static bool xa_stop(void *data)
{
(void)data;
return true;
}
static void xa_set_nonblock_state(void *data, bool state)
{
2011-12-24 12:46:12 +00:00
xa_t *xa = (xa_t*)data;
xa->nonblock = state;
}
static bool xa_start(void *data)
{
(void)data;
return true;
}
static bool xa_use_float(void *data)
{
(void)data;
return true;
}
static void xa_free(void *data)
{
2011-12-24 12:46:12 +00:00
xa_t *xa = (xa_t*)data;
if (xa)
{
if (xa->xa)
xaudio2_free(xa->xa);
free(xa);
}
}
const audio_driver_t audio_xa = {
2011-12-24 12:46:12 +00:00
xa_init,
xa_write,
xa_stop,
xa_start,
xa_set_nonblock_state,
xa_free,
xa_use_float,
"xaudio"
};