dolphin/Source/Core/AudioCommon/OpenSLESStream.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
535 B
C
Raw Permalink Normal View History

// Copyright 2008 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2012-12-17 15:01:52 -06:00
#pragma once
2012-12-26 12:12:26 -06:00
#include <thread>
#include "AudioCommon/SoundStream.h"
#include "Common/Event.h"
2012-12-17 15:01:52 -06:00
class OpenSLESStream final : public SoundStream
2012-12-17 15:01:52 -06:00
{
2022-08-08 09:17:41 +10:00
#ifdef HAVE_OPENSL_ES
2013-02-26 13:49:00 -06:00
public:
~OpenSLESStream() override;
bool Init() override;
bool SetRunning(bool running) override;
2019-11-24 21:34:50 +01:00
void SetVolume(int volume) override;
static bool IsValid() { return true; }
2018-04-12 14:18:04 +02:00
2012-12-17 15:01:52 -06:00
private:
2013-02-26 13:49:00 -06:00
std::thread thread;
Common::Event soundSyncEvent;
2022-08-08 09:17:41 +10:00
#endif // HAVE_OPENSL_ES
2012-12-17 15:01:52 -06:00
};