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_SDL_H
|
|
|
|
#define __GTK_SOUND_DRIVER_SDL_H
|
|
|
|
|
|
|
|
#include "SDL.h"
|
2019-07-16 18:16:10 +02:00
|
|
|
#undef vector
|
|
|
|
#undef bool
|
2010-09-25 17:46:12 +02:00
|
|
|
|
|
|
|
#include "gtk_sound.h"
|
|
|
|
#include "gtk_sound_driver.h"
|
2019-02-10 02:18:45 +01:00
|
|
|
#include "../../apu/resampler.h"
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
#include <cstdint>
|
2010-09-25 17:46:12 +02:00
|
|
|
|
|
|
|
class S9xSDLSoundDriver : public S9xSoundDriver
|
|
|
|
{
|
2019-02-07 02:41:33 +01:00
|
|
|
public:
|
|
|
|
S9xSDLSoundDriver();
|
|
|
|
void init();
|
|
|
|
void terminate();
|
|
|
|
bool open_device();
|
|
|
|
void start();
|
|
|
|
void stop();
|
|
|
|
void mix(unsigned char *output, int bytes);
|
2019-02-10 02:18:45 +01:00
|
|
|
void samples_available();
|
2010-09-25 17:46:12 +02:00
|
|
|
|
2019-02-07 02:41:33 +01:00
|
|
|
private:
|
2019-05-14 22:34:25 +02:00
|
|
|
SDL_AudioSpec audiospec;
|
|
|
|
Resampler buffer;
|
2019-02-10 02:18:45 +01:00
|
|
|
std::mutex mutex;
|
|
|
|
int16_t temp[512];
|
2010-09-25 17:46:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __GTK_SOUND_DRIVER_SDL_H */
|