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:
|
|
|
|
S9xPulseSoundDriver (void);
|
|
|
|
void init (void);
|
|
|
|
void terminate (void);
|
|
|
|
bool8 open_device (void);
|
|
|
|
void start (void);
|
|
|
|
void stop (void);
|
|
|
|
void samples_available (void);
|
2017-11-23 01:14:49 +01:00
|
|
|
void lock (void);
|
|
|
|
void unlock (void);
|
|
|
|
void wait (void);
|
|
|
|
|
|
|
|
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 */
|