2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-07-06 04:10:26 +02:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2009-07-06 04:10:26 +02:00
|
|
|
|
2016-07-31 18:35:08 +02:00
|
|
|
#include <memory>
|
2016-12-11 12:11:34 +01:00
|
|
|
#include <string>
|
2019-05-31 13:01:44 +02:00
|
|
|
#include <string_view>
|
2016-12-11 12:11:34 +01:00
|
|
|
#include <vector>
|
2016-07-31 18:35:08 +02:00
|
|
|
|
2019-03-18 12:22:27 +01:00
|
|
|
#include "AudioCommon/Enums.h"
|
2014-02-17 11:18:15 +01:00
|
|
|
#include "AudioCommon/SoundStream.h"
|
2009-07-06 04:10:26 +02:00
|
|
|
|
2017-06-26 23:41:12 +02:00
|
|
|
class Mixer;
|
2009-07-06 04:10:26 +02:00
|
|
|
|
2022-10-13 21:01:55 +02:00
|
|
|
namespace Core
|
|
|
|
{
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2009-03-29 01:48:46 +01:00
|
|
|
namespace AudioCommon
|
|
|
|
{
|
2022-10-13 21:01:55 +02:00
|
|
|
void InitSoundStream(Core::System& system);
|
|
|
|
void PostInitSoundStream(Core::System& system);
|
|
|
|
void ShutdownSoundStream(Core::System& system);
|
2017-02-05 02:15:38 +01:00
|
|
|
std::string GetDefaultSoundBackend();
|
2009-03-29 01:48:46 +01:00
|
|
|
std::vector<std::string> GetSoundBackends();
|
2019-03-18 12:22:27 +01:00
|
|
|
DPL2Quality GetDefaultDPL2Quality();
|
2019-05-31 13:01:44 +02:00
|
|
|
bool SupportsDPL2Decoder(std::string_view backend);
|
|
|
|
bool SupportsLatencyControl(std::string_view backend);
|
|
|
|
bool SupportsVolumeChanges(std::string_view backend);
|
2022-10-13 21:01:55 +02: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-06 01:48:12 +02:00
|
|
|
} // namespace AudioCommon
|