2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2016-07-31 16:35:08 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "AudioCommon/SoundStream.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
class CMixer;
|
|
|
|
|
2016-07-31 16:35:08 +00:00
|
|
|
extern std::unique_ptr<SoundStream> g_sound_stream;
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2013-10-29 05:23:17 +00:00
|
|
|
namespace AudioCommon
|
2009-07-06 02:10:26 +00:00
|
|
|
{
|
2016-07-31 16:35:08 +00:00
|
|
|
void InitSoundStream();
|
2016-06-24 08:43:46 +00:00
|
|
|
void ShutdownSoundStream();
|
|
|
|
std::vector<std::string> GetSoundBackends();
|
|
|
|
void UpdateSoundStream();
|
|
|
|
void ClearAudioBuffer(bool mute);
|
2016-07-31 23:14:20 +00:00
|
|
|
void SendAIBuffer(const short* samples, unsigned int num_samples);
|
2016-06-24 08:43:46 +00:00
|
|
|
void StartAudioDump();
|
|
|
|
void StopAudioDump();
|
|
|
|
void IncreaseVolume(unsigned short offset);
|
|
|
|
void DecreaseVolume(unsigned short offset);
|
|
|
|
void ToggleMuteVolume();
|
2009-07-06 02:10:26 +00:00
|
|
|
}
|