2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
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
|
|
|
|
2022-10-13 19:01:55 +00:00
|
|
|
namespace Core
|
|
|
|
{
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2009-03-29 00:48:46 +00:00
|
|
|
namespace AudioCommon
|
|
|
|
{
|
2022-10-13 19:01:55 +00:00
|
|
|
void InitSoundStream(Core::System& system);
|
|
|
|
void PostInitSoundStream(Core::System& system);
|
|
|
|
void ShutdownSoundStream(Core::System& system);
|
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);
|
2022-10-13 19:01:55 +00:00
|
|
|
void UpdateSoundStream(Core::System& system);
|
|
|
|
void SetSoundStreamRunning(Core::System& system, bool running);
|
|
|
|
void SendAIBuffer(Core::System& system, const short* samples, unsigned int num_samples);
|
|
|
|
void StartAudioDump(Core::System& system);
|
|
|
|
void StopAudioDump(Core::System& system);
|
|
|
|
void IncreaseVolume(Core::System& system, unsigned short offset);
|
|
|
|
void DecreaseVolume(Core::System& system, unsigned short offset);
|
|
|
|
void ToggleMuteVolume(Core::System& system);
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace AudioCommon
|