mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
SoundStream: Internally construct the mixer
Instead of creating the mixer externally and then passing it in, it can just be made within the class.
This commit is contained in:
@ -13,15 +13,6 @@ class OpenSLESStream final : public SoundStream
|
||||
{
|
||||
#ifdef ANDROID
|
||||
public:
|
||||
OpenSLESStream(CMixer *mixer)
|
||||
: SoundStream(mixer)
|
||||
{
|
||||
}
|
||||
|
||||
virtual ~OpenSLESStream()
|
||||
{
|
||||
}
|
||||
|
||||
virtual bool Start();
|
||||
virtual void Stop();
|
||||
static bool isValid() { return true; }
|
||||
@ -29,11 +20,5 @@ public:
|
||||
private:
|
||||
std::thread thread;
|
||||
Common::Event soundSyncEvent;
|
||||
#else
|
||||
public:
|
||||
OpenSLESStream(CMixer *mixer)
|
||||
: SoundStream(mixer)
|
||||
{
|
||||
}
|
||||
#endif // HAVE_OPENSL
|
||||
};
|
||||
|
Reference in New Issue
Block a user