snes9x/gtk/src/gtk_sound_driver_oss.h

32 lines
860 B
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.
\*****************************************************************************/
2010-09-25 17:46:12 +02:00
#ifndef __GTK_SOUND_DRIVER_OSS_H
#define __GTK_SOUND_DRIVER_OSS_H
#include "gtk_sound.h"
#include "gtk_sound_driver.h"
class S9xOSSSoundDriver : public S9xSoundDriver
{
public:
S9xOSSSoundDriver();
void init();
void terminate();
bool open_device();
void start();
void stop();
void samples_available();
2010-09-25 17:46:12 +02:00
private:
int filedes;
uint8 *sound_buffer;
int sound_buffer_size;
int output_buffer_size;
2010-09-25 17:46:12 +02:00
};
#endif /* __GTK_SOUND_DRIVER_OSS_H */