2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-21 00:17:03 -06:00
|
|
|
// Refer to the license.txt file included.
|
2009-09-09 15:26:33 -06:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-09-09 15:26:33 -06:00
|
|
|
|
2015-05-09 22:20:27 -06:00
|
|
|
#include <atomic>
|
2015-07-07 07:30:27 -06:00
|
|
|
#include <condition_variable>
|
|
|
|
#include <mutex>
|
2015-05-09 22:20:27 -06:00
|
|
|
#include <thread>
|
|
|
|
|
2009-09-09 16:56:23 -06:00
|
|
|
#if defined(HAVE_ALSA) && HAVE_ALSA
|
2009-09-09 15:26:33 -06:00
|
|
|
#include <alsa/asoundlib.h>
|
2009-09-09 16:56:23 -06:00
|
|
|
#endif
|
2009-09-09 15:26:33 -06:00
|
|
|
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "AudioCommon/SoundStream.h"
|
2014-09-07 19:06:58 -06:00
|
|
|
#include "Common/CommonTypes.h"
|
2009-09-09 15:26:33 -06:00
|
|
|
|
2014-03-18 08:37:45 -06:00
|
|
|
class AlsaSound final : public SoundStream
|
2009-09-09 15:26:33 -06:00
|
|
|
{
|
|
|
|
#if defined(HAVE_ALSA) && HAVE_ALSA
|
|
|
|
public:
|
2015-05-24 02:13:02 -06:00
|
|
|
AlsaSound();
|
2009-09-09 15:26:33 -06:00
|
|
|
virtual ~AlsaSound();
|
|
|
|
|
2015-05-24 04:02:30 -06:00
|
|
|
bool Start() override;
|
|
|
|
void SoundLoop() override;
|
|
|
|
void Stop() override;
|
|
|
|
void Update() override;
|
2015-07-07 07:30:27 -06:00
|
|
|
void Clear(bool) override;
|
2009-09-09 15:26:33 -06:00
|
|
|
|
2014-08-30 14:29:15 -06:00
|
|
|
static bool isValid()
|
|
|
|
{
|
2009-09-09 15:26:33 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-05-10 00:30:24 -06:00
|
|
|
enum class ALSAThreadStatus
|
|
|
|
{
|
|
|
|
RUNNING,
|
|
|
|
STOPPING,
|
|
|
|
STOPPED,
|
|
|
|
};
|
|
|
|
|
2009-09-09 15:26:33 -06:00
|
|
|
bool AlsaInit();
|
|
|
|
void AlsaShutdown();
|
|
|
|
|
|
|
|
u8 *mix_buffer;
|
2011-01-27 14:34:37 -07:00
|
|
|
std::thread thread;
|
2015-05-10 00:30:24 -06:00
|
|
|
std::atomic<ALSAThreadStatus> m_thread_status;
|
2015-07-07 07:30:27 -06:00
|
|
|
std::condition_variable cv;
|
|
|
|
std::mutex cv_m;
|
2009-09-09 15:26:33 -06:00
|
|
|
|
|
|
|
snd_pcm_t *handle;
|
2010-05-21 16:48:57 -06:00
|
|
|
int frames_to_deliver;
|
2009-09-09 15:26:33 -06:00
|
|
|
#endif
|
|
|
|
};
|