2010-09-25 17:46:12 +02:00
|
|
|
#ifndef __GTK_SOUND_DRIVER_SDL_H
|
|
|
|
#define __GTK_SOUND_DRIVER_SDL_H
|
|
|
|
|
|
|
|
#include "SDL.h"
|
|
|
|
|
|
|
|
#include "gtk_sound.h"
|
|
|
|
#include "gtk_sound_driver.h"
|
|
|
|
|
|
|
|
class S9xSDLSoundDriver : public S9xSoundDriver
|
|
|
|
{
|
|
|
|
public:
|
2018-11-02 21:52:26 +01:00
|
|
|
S9xSDLSoundDriver ();
|
|
|
|
void init ();
|
|
|
|
void terminate ();
|
|
|
|
bool8 open_device ();
|
|
|
|
void start ();
|
|
|
|
void stop ();
|
2010-09-25 17:46:12 +02:00
|
|
|
void mix (unsigned char *output, int bytes);
|
|
|
|
|
|
|
|
private:
|
|
|
|
SDL_AudioSpec *audiospec;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GTK_SOUND_DRIVER_SDL_H */
|