snes9x/gtk/src/gtk_sound_driver_portaudio.h

30 lines
626 B
C
Raw Normal View History

2010-09-25 17:46:12 +02:00
#ifndef __GTK_SOUND_DRIVER_PORTAUDIO_H
#define __GTK_SOUND_DRIVER_PORTAUDIO_H
#include <portaudio.h>
#include <errno.h>
#include "gtk_sound.h"
#include "gtk_sound_driver.h"
class S9xPortAudioSoundDriver : public S9xSoundDriver
{
public:
S9xPortAudioSoundDriver ();
void init ();
void terminate ();
bool8 open_device ();
void start ();
void stop ();
void samples_available ();
2010-09-25 17:46:12 +02:00
private:
PaStream *audio_stream;
int sound_buffer_size;
uint8 *sound_buffer;
int output_buffer_size;
2010-09-25 17:46:12 +02:00
};
#endif /* __GTK_SOUND_DRIVER_PORTAUDIO_H */