mirror of https://github.com/snes9xgit/snes9x.git
32 lines
1.0 KiB
C++
32 lines
1.0 KiB
C++
/*****************************************************************************\
|
|
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_ALSA_HPP
|
|
#define __S9X_SOUND_DRIVER_ALSA_HPP
|
|
|
|
#include "s9x_sound_driver.hpp"
|
|
#include "alsa/asoundlib.h"
|
|
|
|
class S9xAlsaSoundDriver : public S9xSoundDriver
|
|
{
|
|
public:
|
|
S9xAlsaSoundDriver();
|
|
void init() override;
|
|
void deinit() override;
|
|
bool open_device(int playback_rate, int buffer_size_ms) override;
|
|
void start() override;
|
|
void stop() override;
|
|
bool write_samples(int16_t *data, int samples) override;
|
|
int space_free() override;
|
|
std::pair<int, int> buffer_level() override;
|
|
|
|
private:
|
|
snd_pcm_t *pcm;
|
|
int output_buffer_size_bytes;
|
|
};
|
|
|
|
#endif /* __S9X_SOUND_DRIVER_ALSA_HPP */
|