2018-11-16 00:42:29 +01:00
|
|
|
/*****************************************************************************\
|
|
|
|
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_PULSE_H
|
|
|
|
#define __GTK_SOUND_DRIVER_PULSE_H
|
|
|
|
|
|
|
|
#include "gtk_sound.h"
|
|
|
|
#include "gtk_sound_driver.h"
|
2017-11-23 01:14:49 +01:00
|
|
|
#include "pulse/pulseaudio.h"
|
2010-09-25 17:46:12 +02:00
|
|
|
|
|
|
|
class S9xPulseSoundDriver : public S9xSoundDriver
|
|
|
|
{
|
|
|
|
public:
|
2018-11-02 21:52:26 +01:00
|
|
|
S9xPulseSoundDriver ();
|
|
|
|
void init ();
|
|
|
|
void terminate ();
|
2018-12-28 23:32:32 +01:00
|
|
|
bool open_device ();
|
2018-11-02 21:52:26 +01:00
|
|
|
void start ();
|
|
|
|
void stop ();
|
|
|
|
void samples_available ();
|
|
|
|
void lock ();
|
|
|
|
void unlock ();
|
|
|
|
void wait ();
|
2017-11-23 01:14:49 +01:00
|
|
|
|
|
|
|
pa_threaded_mainloop *mainloop;
|
|
|
|
pa_context *context;
|
|
|
|
pa_stream *stream;
|
2010-09-25 17:46:12 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
int buffer_size;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __GTK_SOUND_DRIVER_PULSE_H */
|