2013-04-21 06:17:03 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2012-12-17 21:01:52 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2012-12-26 18:12:26 +00:00
|
|
|
|
2014-08-14 05:14:35 +00:00
|
|
|
#include <thread>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "AudioCommon/SoundStream.h"
|
2014-04-13 23:15:23 +00:00
|
|
|
#include "Common/Event.h"
|
2012-12-17 21:01:52 +00:00
|
|
|
|
2014-03-18 14:37:45 +00:00
|
|
|
class OpenSLESStream final : public SoundStream
|
2012-12-17 21:01:52 +00:00
|
|
|
{
|
2013-02-26 19:49:00 +00:00
|
|
|
#ifdef ANDROID
|
|
|
|
public:
|
2014-09-06 05:42:56 +00:00
|
|
|
OpenSLESStream(CMixer *mixer)
|
2013-02-26 19:49:00 +00:00
|
|
|
: SoundStream(mixer)
|
2014-09-06 05:42:56 +00:00
|
|
|
{
|
|
|
|
}
|
2013-02-26 19:49:00 +00:00
|
|
|
|
2014-09-06 05:42:56 +00:00
|
|
|
virtual ~OpenSLESStream()
|
|
|
|
{
|
|
|
|
}
|
2013-02-26 19:49:00 +00:00
|
|
|
|
|
|
|
virtual bool Start();
|
|
|
|
virtual void Stop();
|
|
|
|
static bool isValid() { return true; }
|
|
|
|
|
2012-12-17 21:01:52 +00:00
|
|
|
private:
|
2013-02-26 19:49:00 +00:00
|
|
|
std::thread thread;
|
|
|
|
Common::Event soundSyncEvent;
|
|
|
|
#else
|
2012-12-17 21:01:52 +00:00
|
|
|
public:
|
2014-09-06 05:42:56 +00:00
|
|
|
OpenSLESStream(CMixer *mixer)
|
|
|
|
: SoundStream(mixer)
|
|
|
|
{
|
|
|
|
}
|
2013-02-26 19:49:00 +00:00
|
|
|
#endif // HAVE_OPENSL
|
2012-12-17 21:01:52 +00:00
|
|
|
};
|