RetroArch/audio/drivers/psp_audio.c

308 lines
6.7 KiB
C
Raw Normal View History

2014-02-17 14:26:03 +01:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2017-01-22 13:40:32 +01:00
* Copyright (C) 2011-2017 - Daniel De Matteis
* Copyright (C) 2014-2017 - Ali Bouhlel
*
2014-02-17 14:26:03 +01:00
* RetroArch 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.
*
* RetroArch 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 RetroArch.
* If not, see <http://www.gnu.org/licenses/>.
*/
2015-09-14 03:44:06 +02:00
#include <stdint.h>
#include <malloc.h>
2016-08-02 01:38:05 +02:00
#include <stdio.h>
2017-01-17 18:12:23 +01:00
#include <string.h>
2014-02-17 14:26:03 +01:00
2017-12-16 18:01:47 +01:00
#include <rthreads/rthreads.h>
#include <queues/fifo_queue.h>
#ifdef VITA
#include <psp2/kernel/processmgr.h>
#include <psp2/kernel/threadmgr.h>
#include <psp2/kernel/sysmem.h>
#include <psp2/audioout.h>
#else
2014-02-17 16:30:17 +01:00
#include <pspkernel.h>
2014-02-17 14:26:03 +01:00
#include <pspaudio.h>
#endif
2015-09-14 03:44:06 +02:00
2015-11-23 19:40:09 +01:00
#include "../audio_driver.h"
2014-02-17 14:26:03 +01:00
typedef struct psp_audio
2014-02-17 14:26:03 +01:00
{
bool nonblocking;
2016-08-02 01:38:05 +02:00
int rate;
2017-12-16 18:01:47 +01:00
size_t buffer_size;
size_t period_size;
volatile bool running;
2017-12-16 18:01:47 +01:00
fifo_buffer_t *buffer;
sthread_t *worker_thread;
slock_t *fifo_lock;
scond_t *cond;
slock_t *cond_lock;
2016-09-08 16:11:44 +02:00
} psp_audio_t;
2014-02-17 14:26:03 +01:00
#define AUDIO_OUT_COUNT 512u
#define AUDIO_BUFFER_SIZE (1u<<13u)
2015-09-16 10:39:30 +02:00
2017-12-16 18:01:47 +01:00
static void audioMainLoop(void *data)
2014-02-17 17:04:32 +01:00
{
2017-12-16 18:01:47 +01:00
psp_audio_t* psp = (psp_audio_t*)data;
uint8_t *buf = (uint8_t *)calloc(1, psp->period_size);
#ifdef VITA
2016-08-27 17:05:49 +02:00
int port = sceAudioOutOpenPort(
SCE_AUDIO_OUT_PORT_TYPE_MAIN, AUDIO_OUT_COUNT,
psp->rate, SCE_AUDIO_OUT_MODE_STEREO);
#else
sceAudioSRCChReserve(AUDIO_OUT_COUNT, psp->rate, 2);
#endif
2014-02-17 17:04:32 +01:00
while (psp->running)
2014-02-17 17:04:32 +01:00
{
2017-12-16 18:01:47 +01:00
size_t avail;
size_t fifo_size;
slock_lock(psp->fifo_lock);
avail = fifo_read_avail(psp->buffer);
fifo_size = MIN(psp->period_size, avail);
fifo_read(psp->buffer, buf, fifo_size);
scond_signal(psp->cond);
slock_unlock(psp->fifo_lock);
/* If underrun, fill rest with silence. */
memset(buf + fifo_size, 0, psp->period_size - fifo_size);
2016-08-27 17:05:49 +02:00
#ifdef VITA
2017-12-16 18:01:47 +01:00
sceAudioOutOutput(port, buf);
2017-12-15 13:35:10 +01:00
#else
2017-12-16 18:01:47 +01:00
sceAudioSRCOutputBlocking(PSP_AUDIO_VOLUME_MAX, buf);
2016-08-02 01:38:05 +02:00
#endif
2014-02-17 17:04:32 +01:00
}
2015-08-12 14:47:39 +02:00
#ifdef VITA
sceAudioOutReleasePort(port);
#else
sceAudioSRCChRelease();
2016-07-31 09:59:17 +02:00
#endif
2017-12-16 18:01:47 +01:00
slock_lock(psp->cond_lock);
psp->running = false;
scond_signal(psp->cond);
slock_unlock(psp->cond_lock);
free(buf);
return;
2014-02-17 14:26:03 +01:00
}
2014-02-17 17:04:32 +01:00
2014-09-09 22:24:29 +02:00
static void *psp_audio_init(const char *device,
unsigned rate, unsigned latency,
unsigned block_frames,
unsigned *new_rate)
2014-02-17 14:26:03 +01:00
{
psp_audio_t *psp = (psp_audio_t*)calloc(1, sizeof(psp_audio_t));
2014-02-17 17:04:32 +01:00
if (!psp)
return NULL;
2015-04-09 07:01:31 +02:00
(void)device;
(void)latency;
2017-12-16 18:01:47 +01:00
psp->buffer_size = AUDIO_BUFFER_SIZE * sizeof(uint32_t);
psp->period_size = AUDIO_OUT_COUNT * sizeof(uint32_t);
2016-08-02 01:38:05 +02:00
2017-12-16 18:01:47 +01:00
psp->fifo_lock = slock_new();
psp->cond_lock = slock_new();
psp->cond = scond_new();
psp->buffer = fifo_new(psp->buffer_size);
2014-02-17 17:04:32 +01:00
psp->rate = rate;
2016-08-02 01:38:05 +02:00
psp->nonblocking = false;
psp->running = true;
2017-12-16 18:01:47 +01:00
psp->worker_thread = sthread_create(audioMainLoop, psp);
2014-02-17 17:04:32 +01:00
return psp;
2014-02-17 14:26:03 +01:00
}
static void psp_audio_free(void *data)
{
psp_audio_t* psp = (psp_audio_t*)data;
if(!psp)
return;
2014-02-17 17:04:32 +01:00
2017-12-16 18:01:47 +01:00
if(psp->running){
if (psp->worker_thread)
{
slock_lock(psp->cond_lock);
psp->running = false;
slock_unlock(psp->cond_lock);
sthread_join(psp->worker_thread);
}
if (psp->buffer)
fifo_free(psp->buffer);
if (psp->cond)
scond_free(psp->cond);
if (psp->fifo_lock)
slock_free(psp->fifo_lock);
if (psp->cond_lock)
slock_free(psp->cond_lock);
}
free(psp);
2014-02-17 14:26:03 +01:00
}
static ssize_t psp_audio_write(void *data, const void *buf, size_t size)
2014-02-17 14:26:03 +01:00
{
2017-12-16 18:01:47 +01:00
psp_audio_t* psp = (psp_audio_t*)data;
if (!psp->running)
return -1;
2016-09-08 16:11:44 +02:00
2016-08-02 01:38:05 +02:00
if (psp->nonblocking)
{
2017-12-16 18:01:47 +01:00
size_t avail;
size_t write_amt;
2016-08-02 01:38:05 +02:00
2017-12-16 18:01:47 +01:00
slock_lock(psp->fifo_lock);
avail = fifo_write_avail(psp->buffer);
write_amt = MIN(avail, size);
2016-08-02 01:38:05 +02:00
2017-12-16 18:01:47 +01:00
fifo_write(psp->buffer, buf, write_amt);
slock_unlock(psp->fifo_lock);
2016-08-27 17:05:49 +02:00
2017-12-16 18:01:47 +01:00
return write_amt;
2016-08-02 01:38:05 +02:00
}
else
2017-12-16 18:01:47 +01:00
{
size_t written = 0;
while (written < size && psp->running)
{
size_t avail;
slock_lock(psp->fifo_lock);
avail = fifo_write_avail(psp->buffer);
if (avail == 0)
{
slock_unlock(psp->fifo_lock);
slock_lock(psp->cond_lock);
if (psp->running)
scond_wait(psp->cond, psp->cond_lock);
slock_unlock(psp->cond_lock);
}
else
{
size_t write_amt = MIN(size - written, avail);
fifo_write(psp->buffer,
(const char*)buf + written, write_amt);
slock_unlock(psp->fifo_lock);
written += write_amt;
}
}
return written;
}
2014-02-17 14:26:03 +01:00
}
static bool psp_audio_alive(void *data)
{
psp_audio_t* psp = (psp_audio_t*)data;
2015-01-12 05:05:56 +01:00
if (!psp)
return false;
return psp->running;
}
2015-09-16 10:39:30 +02:00
2014-02-17 14:26:03 +01:00
static bool psp_audio_stop(void *data)
{
psp_audio_t* psp = (psp_audio_t*)data;
2017-12-16 18:01:47 +01:00
if (psp){
psp->running = false;
2015-08-30 16:12:45 +02:00
2017-12-16 18:01:47 +01:00
if (!psp->worker_thread)
return true;
2017-12-16 18:01:47 +01:00
sthread_join(psp->worker_thread);
psp->worker_thread = NULL;
}
2014-02-17 17:21:41 +01:00
return true;
2014-02-17 14:26:03 +01:00
}
static bool psp_audio_start(void *data, bool is_shutdown)
2014-02-17 14:26:03 +01:00
{
2015-09-16 10:39:30 +02:00
psp_audio_t* psp = (psp_audio_t*)data;
if(psp && psp->running)
2017-04-28 00:29:51 +02:00
return true;
2015-08-30 16:12:45 +02:00
2017-12-16 18:01:47 +01:00
if (!psp->worker_thread)
{
psp->running = true;
psp->worker_thread = sthread_create(audioMainLoop, psp);
}
2014-02-17 17:21:41 +01:00
return true;
2014-02-17 14:26:03 +01:00
}
2014-02-17 17:21:41 +01:00
static void psp_audio_set_nonblock_state(void *data, bool toggle)
2014-02-17 14:26:03 +01:00
{
psp_audio_t* psp = (psp_audio_t*)data;
2015-01-12 05:05:56 +01:00
if (psp)
psp->nonblocking = toggle;
2014-02-17 14:26:03 +01:00
}
static bool psp_audio_use_float(void *data)
{
(void)data;
return false;
}
static size_t psp_write_avail(void *data)
{
2016-08-02 01:38:05 +02:00
size_t val;
2017-04-27 00:44:35 +02:00
psp_audio_t* psp = (psp_audio_t*)data;
2016-08-02 01:38:05 +02:00
2017-12-16 18:01:47 +01:00
if (!psp||!psp->running)
return 0;
slock_lock(psp->fifo_lock);
val = fifo_write_avail(psp->buffer);
slock_unlock(psp->fifo_lock);
2017-04-27 08:49:21 +02:00
return val;
}
static size_t psp_buffer_size(void *data)
{
/* TODO */
2016-08-02 01:38:05 +02:00
return AUDIO_BUFFER_SIZE /** sizeof(uint32_t)*/;
}
audio_driver_t audio_psp = {
2014-02-17 14:26:03 +01:00
psp_audio_init,
psp_audio_write,
psp_audio_stop,
psp_audio_start,
psp_audio_alive,
2014-02-17 14:26:03 +01:00
psp_audio_set_nonblock_state,
psp_audio_free,
psp_audio_use_float,
#ifdef VITA
"vita",
#else
"psp",
#endif
NULL,
NULL,
psp_write_avail,
2016-08-02 01:38:05 +02:00
psp_buffer_size
2014-02-17 14:26:03 +01:00
};