mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
06218e9ebb
. Fixed super fast refresh rate issue . Recovered <TAB> shortcut key for ThrottleSkipping . Removed redundant "soundstream->Update()" in DSPLLE (Thanks to LordMark) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4728 8ced0084-cf51-0410-be5f-012b33b47a6e
18 lines
342 B
C++
18 lines
342 B
C++
#ifndef HLEMIXER_H
|
|
#define HLEMIXER_H
|
|
#include "AudioCommon.h"
|
|
#include "Mixer.h"
|
|
|
|
class HLEMixer : public CMixer
|
|
{
|
|
public:
|
|
HLEMixer(unsigned int AISampleRate = 48000, unsigned int DACSampleRate = 48000)
|
|
: CMixer(AISampleRate, DACSampleRate) {};
|
|
|
|
virtual void Premix(short *samples, unsigned int numSamples);
|
|
};
|
|
|
|
#endif // HLEMIXER_H
|
|
|
|
|