snes9x/gtk/src/gtk_sound_driver_portaudio.h

36 lines
1.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
#ifndef __GTK_SOUND_DRIVER_PORTAUDIO_H
#define __GTK_SOUND_DRIVER_PORTAUDIO_H
#include <errno.h>
#include <portaudio.h>
2010-09-25 17:46:12 +02:00
#include "gtk_sound.h"
#include "gtk_sound_driver.h"
class S9xPortAudioSoundDriver : public S9xSoundDriver
{
public:
S9xPortAudioSoundDriver();
void init() override;
void deinit() override;
bool open_device(int playback_rate, int buffer_size) override;
void start() override;
void stop() override;
void write_samples(int16_t *data, int samples) override;
int space_free() override;
std::pair<int, int> buffer_level() override;
void samples_available();
2010-09-25 17:46:12 +02:00
private:
PaStream *audio_stream;
int output_buffer_size;
2010-09-25 17:46:12 +02:00
};
#endif /* __GTK_SOUND_DRIVER_PORTAUDIO_H */