2013-04-17 21:09:55 -06:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-11-14 16:56:26 -07:00
|
|
|
|
2013-10-19 03:27:57 -06: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 16:56:26 -07:00
|
|
|
|
2013-10-19 03:27:57 -06:00
|
|
|
#pragma once
|
2010-11-14 16:56:26 -07:00
|
|
|
|
2011-03-15 17:09:12 -06:00
|
|
|
#include <memory>
|
2014-02-17 03:18:15 -07:00
|
|
|
|
|
|
|
#include "AudioCommon/SoundStream.h"
|
|
|
|
#include "Common/Thread.h"
|
2010-11-14 16:56:26 -07:00
|
|
|
|
2013-10-19 03:27:57 -06:00
|
|
|
#ifdef _WIN32
|
2010-11-14 16:56:26 -07:00
|
|
|
|
2013-10-19 03:27:57 -06:00
|
|
|
struct StreamingVoiceContext;
|
|
|
|
struct IXAudio2;
|
|
|
|
struct IXAudio2MasteringVoice;
|
2010-11-14 16:56:26 -07:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class XAudio2 : public SoundStream
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
2013-10-19 03:27:57 -06:00
|
|
|
private:
|
2011-03-15 17:09:12 -06: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 16:56:26 -07:00
|
|
|
float m_volume;
|
|
|
|
|
2011-03-15 17:09:12 -06:00
|
|
|
const bool m_cleanup_com;
|
2010-11-14 16:56:26 -07:00
|
|
|
|
2013-10-19 03:27:57 -06:00
|
|
|
static HMODULE m_xaudio2_dll;
|
|
|
|
static void *PXAudio2Create;
|
2010-11-14 16:56:26 -07:00
|
|
|
|
2013-10-19 03:27:57 -06:00
|
|
|
static bool InitLibrary();
|
|
|
|
|
|
|
|
public:
|
|
|
|
XAudio2(CMixer *mixer);
|
|
|
|
virtual ~XAudio2();
|
2013-10-28 23:23:17 -06:00
|
|
|
|
2010-11-14 16:56:26 -07:00
|
|
|
virtual bool Start();
|
2011-03-15 17:09:12 -06:00
|
|
|
virtual void Stop();
|
|
|
|
|
|
|
|
virtual void Update();
|
2010-11-14 16:56:26 -07:00
|
|
|
virtual void Clear(bool mute);
|
2011-03-15 17:09:12 -06:00
|
|
|
virtual void SetVolume(int volume);
|
|
|
|
virtual bool usesMixer() const { return true; }
|
|
|
|
|
2013-10-19 03:27:57 -06:00
|
|
|
static bool isValid() { return InitLibrary(); }
|
2010-11-14 16:56:26 -07:00
|
|
|
|
|
|
|
#else
|
2011-03-15 17:09:12 -06:00
|
|
|
|
2010-11-14 16:56:26 -07:00
|
|
|
public:
|
2013-10-19 03:27:57 -06:00
|
|
|
XAudio2(CMixer *mixer)
|
2010-11-14 16:56:26 -07:00
|
|
|
: SoundStream(mixer)
|
|
|
|
{}
|
2013-10-19 03:27:57 -06:00
|
|
|
|
2010-11-14 16:56:26 -07:00
|
|
|
#endif
|
|
|
|
};
|