mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 08:25:12 +01:00
36 lines
716 B
C++
36 lines
716 B
C++
/****************************************************************************
|
|
* Visual Boy Advance GX
|
|
*
|
|
* Tantric September 2008
|
|
*
|
|
* audio.h
|
|
*
|
|
* Head and tail audio mixer
|
|
***************************************************************************/
|
|
|
|
#ifndef __AUDIOMIXER__
|
|
#define __AUDIOMIXER__
|
|
|
|
#include "vba/common/SoundDriver.h"
|
|
|
|
void InitialiseSound();
|
|
void StopAudio();
|
|
void SetAudioRate(int type);
|
|
void SwitchAudioMode(int mode);
|
|
void ShutdownAudio();
|
|
|
|
class SoundWii: public SoundDriver
|
|
{
|
|
public:
|
|
SoundWii();
|
|
virtual ~SoundWii();
|
|
|
|
virtual bool init(long sampleRate);
|
|
virtual void pause();
|
|
virtual void reset();
|
|
virtual void resume();
|
|
virtual void write(u16 * finalWave, int length);
|
|
};
|
|
|
|
#endif
|