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>
|
2016-12-11 11:11:34 +00:00
|
|
|
#include <string>
|
2019-05-31 11:01:44 +00:00
|
|
|
#include <string_view>
|
2016-12-11 11:11:34 +00:00
|
|
|
#include <vector>
|
2016-07-31 16:35:08 +00:00
|
|
|
|
2019-03-18 11:22:27 +00:00
|
|
|
#include "AudioCommon/Enums.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "AudioCommon/SoundStream.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2017-06-26 21:41:12 +00:00
|
|
|
class Mixer;
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2016-07-31 16:35:08 +00:00
|
|
|
extern std::unique_ptr<SoundStream> g_sound_stream;
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2009-03-29 00:48:46 +00:00
|
|
|
namespace AudioCommon
|
|
|
|
{
|
2016-07-31 16:35:08 +00:00
|
|
|
void InitSoundStream();
|
2021-03-21 23:06:44 +00:00
|
|
|
void PostInitSoundStream();
|
2009-03-29 00:48:46 +00:00
|
|
|
void ShutdownSoundStream();
|
2017-02-05 01:15:38 +00:00
|
|
|
std::string GetDefaultSoundBackend();
|
2009-03-29 00:48:46 +00:00
|
|
|
std::vector<std::string> GetSoundBackends();
|
2019-03-18 11:22:27 +00:00
|
|
|
DPL2Quality GetDefaultDPL2Quality();
|
2019-05-31 11:01:44 +00:00
|
|
|
bool SupportsDPL2Decoder(std::string_view backend);
|
|
|
|
bool SupportsLatencyControl(std::string_view backend);
|
|
|
|
bool SupportsVolumeChanges(std::string_view backend);
|
2013-01-17 01:16:56 +00:00
|
|
|
void UpdateSoundStream();
|
2017-10-21 19:35:58 +00:00
|
|
|
void SetSoundStreamRunning(bool running);
|
2016-07-31 23:14:20 +00:00
|
|
|
void SendAIBuffer(const short* samples, unsigned int num_samples);
|
2014-10-16 00:03:31 +00:00
|
|
|
void StartAudioDump();
|
|
|
|
void StopAudioDump();
|
2014-12-28 21:03:21 +00:00
|
|
|
void IncreaseVolume(unsigned short offset);
|
|
|
|
void DecreaseVolume(unsigned short offset);
|
|
|
|
void ToggleMuteVolume();
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace AudioCommon
|