2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
// This audio backend uses XAudio2 via XAUDIO2_DLL
|
|
|
|
// It works on Windows 8+, where it is included as an OS component.
|
|
|
|
// This backend is always compiled, but only available if running on Win8+
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
#pragma once
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2011-03-15 23:09:12 +00:00
|
|
|
#include <memory>
|
2014-02-17 10:18:15 +00:00
|
|
|
|
|
|
|
#include "AudioCommon/SoundStream.h"
|
|
|
|
#include "Common/Thread.h"
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
#ifdef _WIN32
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
struct StreamingVoiceContext;
|
|
|
|
struct IXAudio2;
|
|
|
|
struct IXAudio2MasteringVoice;
|
2010-11-14 23:56:26 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2014-03-18 14:37:45 +00:00
|
|
|
class XAudio2 final : public SoundStream
|
2010-11-14 23:56:26 +00:00
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
private:
|
2011-03-15 23:09:12 +00:00
|
|
|
class Releaser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
template <typename R>
|
|
|
|
void operator()(R* ptr)
|
|
|
|
{
|
|
|
|
ptr->Release();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
std::unique_ptr<IXAudio2, Releaser> m_xaudio2;
|
|
|
|
std::unique_ptr<StreamingVoiceContext> m_voice_context;
|
|
|
|
IXAudio2MasteringVoice *m_mastering_voice;
|
|
|
|
|
|
|
|
Common::Event m_sound_sync_event;
|
2010-11-14 23:56:26 +00:00
|
|
|
float m_volume;
|
|
|
|
|
2011-03-15 23:09:12 +00:00
|
|
|
const bool m_cleanup_com;
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
static HMODULE m_xaudio2_dll;
|
|
|
|
static void *PXAudio2Create;
|
2010-11-14 23:56:26 +00:00
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
static bool InitLibrary();
|
|
|
|
|
|
|
|
public:
|
|
|
|
XAudio2(CMixer *mixer);
|
|
|
|
virtual ~XAudio2();
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2010-11-14 23:56:26 +00:00
|
|
|
virtual bool Start();
|
2011-03-15 23:09:12 +00:00
|
|
|
virtual void Stop();
|
|
|
|
|
|
|
|
virtual void Update();
|
2010-11-14 23:56:26 +00:00
|
|
|
virtual void Clear(bool mute);
|
2011-03-15 23:09:12 +00:00
|
|
|
virtual void SetVolume(int volume);
|
|
|
|
|
2013-10-19 09:27:57 +00:00
|
|
|
static bool isValid() { return InitLibrary(); }
|
2010-11-14 23:56:26 +00:00
|
|
|
|
|
|
|
#else
|
2011-03-15 23:09:12 +00:00
|
|
|
|
2010-11-14 23:56:26 +00:00
|
|
|
public:
|
2013-10-19 09:27:57 +00:00
|
|
|
XAudio2(CMixer *mixer)
|
2010-11-14 23:56:26 +00:00
|
|
|
: SoundStream(mixer)
|
|
|
|
{}
|
2013-10-19 09:27:57 +00:00
|
|
|
|
2010-11-14 23:56:26 +00:00
|
|
|
#endif
|
|
|
|
};
|