2013-04-21 06:17:03 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-09-09 21:26:33 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-09-09 21:26:33 +00:00
|
|
|
|
2009-09-09 22:56:23 +00:00
|
|
|
#if defined(HAVE_ALSA) && HAVE_ALSA
|
2009-09-09 21:26:33 +00:00
|
|
|
#include <alsa/asoundlib.h>
|
2009-09-09 22:56:23 +00:00
|
|
|
#endif
|
2009-09-09 21:26:33 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "AudioCommon/SoundStream.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/Thread.h"
|
2009-09-09 21:26:33 +00:00
|
|
|
|
2014-03-18 14:37:45 +00:00
|
|
|
class AlsaSound final : public SoundStream
|
2009-09-09 21:26:33 +00:00
|
|
|
{
|
|
|
|
#if defined(HAVE_ALSA) && HAVE_ALSA
|
|
|
|
public:
|
|
|
|
AlsaSound(CMixer *mixer);
|
|
|
|
virtual ~AlsaSound();
|
|
|
|
|
2014-03-08 00:54:44 +00:00
|
|
|
virtual bool Start() override;
|
|
|
|
virtual void SoundLoop() override;
|
|
|
|
virtual void Stop() override;
|
2009-09-09 21:26:33 +00:00
|
|
|
|
2014-08-30 20:29:15 +00:00
|
|
|
static bool isValid()
|
|
|
|
{
|
2009-09-09 21:26:33 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-03-08 00:54:44 +00:00
|
|
|
virtual void Update() override;
|
2009-09-09 21:26:33 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool AlsaInit();
|
|
|
|
void AlsaShutdown();
|
|
|
|
|
|
|
|
u8 *mix_buffer;
|
2011-01-27 21:34:37 +00:00
|
|
|
std::thread thread;
|
2009-09-09 21:26:33 +00:00
|
|
|
// 0 = continue
|
|
|
|
// 1 = shutdown
|
|
|
|
// 2 = done shutting down.
|
|
|
|
volatile int thread_data;
|
|
|
|
|
|
|
|
snd_pcm_t *handle;
|
2010-05-21 22:48:57 +00:00
|
|
|
int frames_to_deliver;
|
2009-09-09 21:26:33 +00:00
|
|
|
#else
|
|
|
|
public:
|
|
|
|
AlsaSound(CMixer *mixer) : SoundStream(mixer) {}
|
|
|
|
#endif
|
|
|
|
};
|