snes9x/common/audio/s9x_sound_driver_sdl.hpp

45 lines
1.3 KiB
C++
Raw Normal View History

/*****************************************************************************\
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.
\*****************************************************************************/
#ifndef __S9X_SOUND_DRIVER_SDL_HPP
#define __S9X_SOUND_DRIVER_SDL_HPP
2010-09-25 17:46:12 +02:00
#include "SDL.h"
2019-07-16 18:21:58 +02:00
// SDL.h may include altivec.h which redefines vector and bool
2019-07-16 18:16:10 +02:00
#undef vector
#undef bool
2010-09-25 17:46:12 +02:00
#include "s9x_sound_driver.hpp"
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
{
public:
S9xSDLSoundDriver();
2023-03-23 22:53:43 +01:00
~S9xSDLSoundDriver();
void init() override;
void deinit() override;
bool open_device(int playback_rate, int buffer_size) override;
void start() override;
void stop() override;
void write_samples(int16_t *data, int samples) override;
int space_free() override;
std::pair<int, int> buffer_level() override;
2010-09-25 17:46:12 +02:00
private:
void mix(unsigned char *output, int bytes);
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 /* __S9X_SOUND_DRIVER_SDL_HPP */