snes9x/gtk/src/gtk_sound_driver_portaudio.cpp

216 lines
5.1 KiB
C++
Raw Normal View History

/*****************************************************************************\
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
This file is licensed under the Snes9x License.
For further information, consult the LICENSE file in the root directory.
\*****************************************************************************/
2010-09-25 17:46:12 +02:00
#include "gtk_sound_driver_portaudio.h"
#include "gtk_s9x.h"
2010-09-25 17:46:12 +02:00
static inline int frames_to_bytes(int frames)
2010-09-25 17:46:12 +02:00
{
return frames * 4;
2010-09-25 17:46:12 +02:00
}
static void port_audio_samples_available_callback(void *data)
2010-09-25 17:46:12 +02:00
{
((S9xPortAudioSoundDriver *)data)->samples_available();
2010-09-25 17:46:12 +02:00
}
S9xPortAudioSoundDriver::S9xPortAudioSoundDriver()
2010-09-25 17:46:12 +02:00
{
audio_stream = NULL;
sound_buffer = NULL;
sound_buffer_size = 0;
2010-09-25 17:46:12 +02:00
}
void S9xPortAudioSoundDriver::init()
2010-09-25 17:46:12 +02:00
{
PaError err;
err = Pa_Initialize();
2010-09-25 17:46:12 +02:00
if (err != paNoError)
fprintf(stderr,
"Couldn't initialize PortAudio: %s\n",
Pa_GetErrorText(err));
2010-09-25 17:46:12 +02:00
}
void S9xPortAudioSoundDriver::terminate()
2010-09-25 17:46:12 +02:00
{
stop();
2010-09-25 17:46:12 +02:00
S9xSetSamplesAvailableCallback(NULL, NULL);
2010-09-25 17:46:12 +02:00
Pa_Terminate();
2010-09-25 17:46:12 +02:00
if (sound_buffer)
{
free(sound_buffer);
sound_buffer = NULL;
}
2010-09-25 17:46:12 +02:00
}
void S9xPortAudioSoundDriver::start()
2010-09-25 17:46:12 +02:00
{
PaError err;
if (audio_stream != NULL && !(gui_config->mute_sound))
{
if ((Pa_IsStreamActive(audio_stream)))
2010-09-25 17:46:12 +02:00
return;
err = Pa_StartStream(audio_stream);
2010-09-25 17:46:12 +02:00
if (err != paNoError)
{
fprintf(stderr, "Error: %s\n", Pa_GetErrorText(err));
2010-09-25 17:46:12 +02:00
}
}
}
void S9xPortAudioSoundDriver::stop()
2010-09-25 17:46:12 +02:00
{
if (audio_stream != NULL)
{
Pa_StopStream(audio_stream);
2010-09-25 17:46:12 +02:00
}
}
bool S9xPortAudioSoundDriver::open_device()
2010-09-25 17:46:12 +02:00
{
PaStreamParameters param;
const PaDeviceInfo *device_info;
2010-09-25 17:46:12 +02:00
const PaHostApiInfo *hostapi_info;
PaError err = paNoError;
2010-09-25 17:46:12 +02:00
if (audio_stream != NULL)
{
printf("Shutting down sound for reset\n");
err = Pa_CloseStream(audio_stream);
2010-09-25 17:46:12 +02:00
if (err != paNoError)
{
fprintf(stderr,
"Couldn't reset audio stream.\nError: %s\n",
Pa_GetErrorText(err));
return true;
2010-09-25 17:46:12 +02:00
}
audio_stream = NULL;
}
param.channelCount = 2;
param.sampleFormat = paInt16;
2010-09-25 17:46:12 +02:00
param.hostApiSpecificStreamInfo = NULL;
printf("PortAudio sound driver initializing...\n");
2010-09-25 17:46:12 +02:00
for (int i = 0; i < Pa_GetHostApiCount(); i++)
2010-09-25 17:46:12 +02:00
{
printf(" --> ");
2010-09-25 17:46:12 +02:00
hostapi_info = Pa_GetHostApiInfo(i);
2010-09-25 17:46:12 +02:00
if (!hostapi_info)
{
printf("Host API #%d has no info\n", i);
2010-09-25 17:46:12 +02:00
err = paNotInitialized;
continue;
}
device_info = Pa_GetDeviceInfo(hostapi_info->defaultOutputDevice);
2010-09-25 17:46:12 +02:00
if (!device_info)
{
printf("(%s)...No device info available.\n", hostapi_info->name);
2010-09-25 17:46:12 +02:00
err = paNotInitialized;
continue;
}
param.device = hostapi_info->defaultOutputDevice;
param.suggestedLatency = gui_config->sound_buffer_size * 0.001;
printf("(%s : %s, latency %dms)...",
hostapi_info->name,
device_info->name,
(int)(param.suggestedLatency * 1000.0));
2010-09-25 17:46:12 +02:00
fflush(stdout);
2010-09-25 17:46:12 +02:00
err = Pa_OpenStream(&audio_stream,
NULL,
&param,
Settings.SoundPlaybackRate,
0,
paNoFlag,
NULL,
NULL);
int frames = Pa_GetStreamWriteAvailable(audio_stream);
output_buffer_size = frames_to_bytes(frames);
2010-09-25 17:46:12 +02:00
if (err == paNoError)
{
printf("OK\n");
2010-09-25 17:46:12 +02:00
break;
}
else
{
printf("Failed (%s)\n",
Pa_GetErrorText(err));
2010-09-25 17:46:12 +02:00
}
}
if (err != paNoError || Pa_GetHostApiCount() < 1)
2010-09-25 17:46:12 +02:00
{
fprintf(stderr,
"Couldn't initialize sound\n");
return false;
2010-09-25 17:46:12 +02:00
}
S9xSetSamplesAvailableCallback(port_audio_samples_available_callback, this);
2010-09-25 17:46:12 +02:00
fflush(stdout);
fflush(stderr);
2010-09-25 17:46:12 +02:00
return true;
2010-09-25 17:46:12 +02:00
}
void S9xPortAudioSoundDriver::samples_available()
2010-09-25 17:46:12 +02:00
{
int frames;
int bytes;
frames = Pa_GetStreamWriteAvailable(audio_stream);
if (Settings.DynamicRateControl)
{
S9xUpdateDynamicRate(frames_to_bytes(frames), output_buffer_size);
}
2010-09-25 17:46:12 +02:00
S9xFinalizeSamples();
2010-09-25 17:46:12 +02:00
if (Settings.DynamicRateControl)
{
// Using rate control, we should always keep the emulator's sound buffers empty to
// maintain an accurate measurement.
if (frames < (S9xGetSampleCount() >> 1))
{
S9xClearSamples();
return;
}
}
frames = MIN(frames, S9xGetSampleCount() >> 1);
bytes = frames_to_bytes(frames);
if (sound_buffer_size < bytes || sound_buffer == NULL)
{
sound_buffer = (uint8 *)realloc(sound_buffer, bytes);
sound_buffer_size = bytes;
}
S9xMixSamples(sound_buffer, frames << 1);
Pa_WriteStream(audio_stream, sound_buffer, frames);
2010-09-25 17:46:12 +02:00
}