RetroArch/audio/alsa.c

256 lines
6.7 KiB
C
Raw Normal View History

2012-04-21 23:13:50 +02:00
/* RetroArch - A frontend for libretro.
2012-01-08 01:08:18 +01:00
* Copyright (C) 2010-2012 - Hans-Kristian Arntzen
2010-05-28 18:21:33 +02:00
*
2012-04-21 23:13:50 +02:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2010-05-28 18:21:33 +02:00
* 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.
*
2012-04-21 23:13:50 +02:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2010-05-28 18:21:33 +02:00
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
2012-04-21 23:31:57 +02:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2010-05-28 18:21:33 +02:00
* If not, see <http://www.gnu.org/licenses/>.
*/
2011-12-25 00:59:46 +01:00
#include "../driver.h"
2010-05-28 15:41:38 +02:00
#include <stdlib.h>
2011-06-25 17:15:58 +02:00
#include <asoundlib.h>
2011-12-25 00:59:46 +01:00
#include "../general.h"
2010-05-28 15:41:38 +02:00
2011-10-15 12:54:47 +02:00
#define TRY_ALSA(x) if (x < 0) { \
2010-05-28 15:41:38 +02:00
goto error; \
}
typedef struct alsa
{
snd_pcm_t *pcm;
2010-08-16 19:16:03 +02:00
bool nonblock;
bool has_float;
size_t buffer_size;
2010-05-28 15:41:38 +02:00
} alsa_t;
static bool alsa_use_float(void *data)
{
2011-12-24 13:46:12 +01:00
alsa_t *alsa = (alsa_t*)data;
return alsa->has_float;
}
static bool find_float_format(snd_pcm_t *pcm, snd_pcm_hw_params_t *params)
{
if (snd_pcm_hw_params_test_format(pcm, params, SND_PCM_FORMAT_FLOAT) == 0)
{
2012-04-21 23:25:32 +02:00
RARCH_LOG("ALSA: Using floating point format.\n");
return true;
}
2012-04-21 23:25:32 +02:00
RARCH_LOG("ALSA: Using signed 16-bit format.\n");
return false;
}
static void *alsa_init(const char *device, unsigned rate, unsigned latency)
2010-05-28 15:41:38 +02:00
{
2011-12-24 13:46:12 +01:00
alsa_t *alsa = (alsa_t*)calloc(1, sizeof(alsa_t));
2011-10-15 12:54:47 +02:00
if (!alsa)
2010-05-28 15:41:38 +02:00
return NULL;
snd_pcm_hw_params_t *params = NULL;
snd_pcm_sw_params_t *sw_params = NULL;
2010-05-28 15:41:38 +02:00
const char *alsa_dev = "default";
2011-10-15 12:54:47 +02:00
if (device)
2010-05-28 15:41:38 +02:00
alsa_dev = device;
unsigned latency_usec = latency * 1000;
unsigned channels = 2;
2011-12-24 13:46:12 +01:00
unsigned periods = 4;
snd_pcm_uframes_t buffer_size;
snd_pcm_format_t format;
TRY_ALSA(snd_pcm_open(&alsa->pcm, alsa_dev, SND_PCM_STREAM_PLAYBACK, SND_PCM_NONBLOCK));
2010-05-28 15:41:38 +02:00
TRY_ALSA(snd_pcm_hw_params_malloc(&params));
alsa->has_float = find_float_format(alsa->pcm, params);
2011-12-24 13:46:12 +01:00
format = alsa->has_float ? SND_PCM_FORMAT_FLOAT : SND_PCM_FORMAT_S16;
2010-05-28 15:41:38 +02:00
TRY_ALSA(snd_pcm_hw_params_any(alsa->pcm, params));
TRY_ALSA(snd_pcm_hw_params_set_access(alsa->pcm, params, SND_PCM_ACCESS_RW_INTERLEAVED));
TRY_ALSA(snd_pcm_hw_params_set_format(alsa->pcm, params, format));
TRY_ALSA(snd_pcm_hw_params_set_channels(alsa->pcm, params, channels));
TRY_ALSA(snd_pcm_hw_params_set_rate(alsa->pcm, params, rate, 0));
2010-05-28 15:59:49 +02:00
TRY_ALSA(snd_pcm_hw_params_set_buffer_time_near(alsa->pcm, params, &latency_usec, NULL));
TRY_ALSA(snd_pcm_hw_params_set_periods_near(alsa->pcm, params, &periods, NULL));
2010-05-28 15:41:38 +02:00
TRY_ALSA(snd_pcm_hw_params(alsa->pcm, params));
snd_pcm_hw_params_get_period_size(params, &buffer_size, NULL);
2012-04-21 23:25:32 +02:00
RARCH_LOG("ALSA: Period size: %d frames\n", (int)buffer_size);
2010-05-28 20:58:56 +02:00
snd_pcm_hw_params_get_buffer_size(params, &buffer_size);
2012-04-21 23:25:32 +02:00
RARCH_LOG("ALSA: Buffer size: %d frames\n", (int)buffer_size);
alsa->buffer_size = snd_pcm_frames_to_bytes(alsa->pcm, buffer_size);
2010-05-28 15:41:38 +02:00
TRY_ALSA(snd_pcm_sw_params_malloc(&sw_params));
TRY_ALSA(snd_pcm_sw_params_current(alsa->pcm, sw_params));
TRY_ALSA(snd_pcm_sw_params_set_start_threshold(alsa->pcm, sw_params, buffer_size / 2));
TRY_ALSA(snd_pcm_sw_params(alsa->pcm, sw_params));
2010-05-28 15:41:38 +02:00
snd_pcm_hw_params_free(params);
snd_pcm_sw_params_free(sw_params);
2010-05-28 15:41:38 +02:00
return alsa;
error:
2012-04-21 23:25:32 +02:00
RARCH_ERR("ALSA: Failed to initialize...\n");
if (params)
2010-05-28 15:41:38 +02:00
snd_pcm_hw_params_free(params);
if (sw_params)
snd_pcm_sw_params_free(sw_params);
if (alsa)
2010-05-28 15:41:38 +02:00
{
if (alsa->pcm)
2010-05-28 15:41:38 +02:00
snd_pcm_close(alsa->pcm);
free(alsa);
}
return NULL;
}
2012-04-25 19:49:11 +02:00
static ssize_t alsa_write(void *data, const void *buf_, size_t size_)
2010-05-28 15:41:38 +02:00
{
2011-12-24 13:46:12 +01:00
alsa_t *alsa = (alsa_t*)data;
2012-04-25 19:49:11 +02:00
const uint8_t *buf = (const uint8_t*)buf_;
2010-05-28 15:41:38 +02:00
2012-09-10 21:25:03 +02:00
bool eagain_retry = true;
2010-08-17 23:06:44 +02:00
snd_pcm_sframes_t written = 0;
2012-09-10 21:25:03 +02:00
snd_pcm_sframes_t size = snd_pcm_bytes_to_frames(alsa->pcm, size_);
2010-05-28 15:41:38 +02:00
2012-04-25 19:49:11 +02:00
while (size)
2010-05-28 15:41:38 +02:00
{
2010-08-17 23:06:44 +02:00
if (!alsa->nonblock)
{
2012-04-25 19:49:11 +02:00
int rc = snd_pcm_wait(alsa->pcm, -1);
if (rc == -EPIPE || rc == -ESTRPIPE || rc == -EINTR)
2010-08-17 23:06:44 +02:00
{
if (snd_pcm_recover(alsa->pcm, rc, 1) < 0)
2012-09-10 21:25:03 +02:00
{
RARCH_ERR("[ALSA]: (#1) Failed to recover from error (%s)\n",
snd_strerror(rc));
2010-08-17 23:06:44 +02:00
return -1;
2012-09-10 21:25:03 +02:00
}
2010-08-17 23:06:44 +02:00
continue;
}
}
2012-04-25 19:49:11 +02:00
snd_pcm_sframes_t frames = snd_pcm_writei(alsa->pcm, buf, size);
2010-08-17 23:06:44 +02:00
2011-10-15 12:54:47 +02:00
if (frames == -EPIPE || frames == -EINTR || frames == -ESTRPIPE)
2010-08-17 23:06:44 +02:00
{
2011-10-15 12:54:47 +02:00
if (snd_pcm_recover(alsa->pcm, frames, 1) < 0)
2012-09-10 21:25:03 +02:00
{
RARCH_ERR("[ALSA]: (#2) Failed to recover from error (%s)\n",
snd_strerror(frames));
2010-08-17 23:06:44 +02:00
return -1;
2012-09-10 21:25:03 +02:00
}
2010-08-17 23:06:44 +02:00
2012-04-25 19:49:11 +02:00
break;
2010-08-17 23:06:44 +02:00
}
2012-09-14 21:41:58 +02:00
else if (frames == -EAGAIN && !alsa->nonblock) // Definitely not supposed to happen.
2012-09-10 21:25:03 +02:00
{
RARCH_WARN("[ALSA]: poll() was signaled, but EAGAIN returned from write.\n"
"Your ALSA driver might be subtly broken.\n");
if (eagain_retry)
{
eagain_retry = false;
continue;
}
else
return written;
}
2012-09-14 21:41:58 +02:00
else if (frames == -EAGAIN) // Expected if we're running nonblock.
{
return written;
}
2011-10-15 12:54:47 +02:00
else if (frames < 0)
2012-09-10 21:25:03 +02:00
{
RARCH_ERR("[ALSA]: Unknown error occured (%s).\n", snd_strerror(frames));
2010-05-28 15:41:38 +02:00
return -1;
2012-09-10 21:25:03 +02:00
}
2010-05-28 15:41:38 +02:00
2010-08-17 23:06:44 +02:00
written += frames;
2012-09-10 21:25:03 +02:00
buf += (frames << 1) * (alsa->has_float ? sizeof(float) : sizeof(int16_t));
size -= frames;
2010-05-28 15:41:38 +02:00
}
2012-04-25 19:49:11 +02:00
return written;
2010-05-28 15:41:38 +02:00
}
static bool alsa_stop(void *data)
2010-05-28 15:41:38 +02:00
{
return true;
}
static void alsa_set_nonblock_state(void *data, bool state)
2010-08-16 19:16:03 +02:00
{
2011-12-24 13:46:12 +01:00
alsa_t *alsa = (alsa_t*)data;
2010-08-17 23:06:44 +02:00
alsa->nonblock = state;
2010-08-16 19:16:03 +02:00
}
static bool alsa_start(void *data)
2010-05-28 15:41:38 +02:00
{
return true;
}
static void alsa_free(void *data)
2010-05-28 15:41:38 +02:00
{
2011-12-24 13:46:12 +01:00
alsa_t *alsa = (alsa_t*)data;
2012-04-25 19:49:11 +02:00
2011-10-15 12:54:47 +02:00
if (alsa)
2010-05-28 15:41:38 +02:00
{
2011-10-15 12:54:47 +02:00
if (alsa->pcm)
2010-05-28 15:41:38 +02:00
{
snd_pcm_drop(alsa->pcm);
snd_pcm_close(alsa->pcm);
}
free(alsa);
}
}
static size_t alsa_write_avail(void *data)
{
alsa_t *alsa = (alsa_t*)data;
snd_pcm_sframes_t avail = snd_pcm_avail_update(alsa->pcm);
if (avail < 0)
{
2012-09-25 13:33:11 +02:00
//RARCH_WARN("[ALSA]: avail_update() failed: %s\n", snd_strerror(avail));
return alsa->buffer_size;
}
return snd_pcm_frames_to_bytes(alsa->pcm, avail);
}
static size_t alsa_buffer_size(void *data)
{
alsa_t *alsa = (alsa_t*)data;
return alsa->buffer_size;
}
2010-05-28 15:41:38 +02:00
const audio_driver_t audio_alsa = {
2011-12-24 13:46:12 +01:00
alsa_init,
alsa_write,
alsa_stop,
alsa_start,
alsa_set_nonblock_state,
alsa_free,
alsa_use_float,
"alsa",
alsa_write_avail,
alsa_buffer_size,
2010-05-28 15:41:38 +02:00
};