2022-04-23 03:59:50 -05:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-08-04 16:45:14 -05:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
#include <memory>
|
2021-06-20 09:23:16 -05:00
|
|
|
#include <mutex>
|
2018-08-04 16:45:14 -05:00
|
|
|
#include <vector>
|
|
|
|
|
2020-04-20 21:57:30 -05:00
|
|
|
#include "audio_core/behavior_info.h"
|
2020-07-12 06:59:14 -05:00
|
|
|
#include "audio_core/command_generator.h"
|
2020-04-21 22:03:58 -05:00
|
|
|
#include "audio_core/common.h"
|
2020-07-12 06:59:14 -05:00
|
|
|
#include "audio_core/effect_context.h"
|
|
|
|
#include "audio_core/memory_pool.h"
|
|
|
|
#include "audio_core/mix_context.h"
|
|
|
|
#include "audio_core/sink_context.h"
|
|
|
|
#include "audio_core/splitter_context.h"
|
2018-08-04 16:45:14 -05:00
|
|
|
#include "audio_core/stream.h"
|
2020-07-12 06:59:14 -05:00
|
|
|
#include "audio_core/voice_context.h"
|
2018-09-14 10:54:17 -05:00
|
|
|
#include "common/common_funcs.h"
|
2018-08-04 16:45:14 -05:00
|
|
|
#include "common/common_types.h"
|
|
|
|
#include "common/swap.h"
|
2020-04-20 21:57:30 -05:00
|
|
|
#include "core/hle/result.h"
|
2018-09-14 10:54:17 -05:00
|
|
|
|
2019-02-14 11:42:58 -06:00
|
|
|
namespace Core::Timing {
|
|
|
|
class CoreTiming;
|
|
|
|
}
|
|
|
|
|
2020-03-31 14:10:44 -05:00
|
|
|
namespace Core::Memory {
|
2019-11-26 13:10:49 -06:00
|
|
|
class Memory;
|
|
|
|
}
|
|
|
|
|
2018-08-04 16:45:14 -05:00
|
|
|
namespace AudioCore {
|
2020-11-16 21:14:29 -06:00
|
|
|
using DSPStateHolder = std::array<VoiceState*, AudioCommon::MAX_CHANNEL_COUNT>;
|
2018-08-04 16:45:14 -05:00
|
|
|
|
2018-09-14 10:54:17 -05:00
|
|
|
class AudioOut;
|
|
|
|
|
2018-08-04 16:45:14 -05:00
|
|
|
class AudioRenderer {
|
|
|
|
public:
|
2020-03-31 14:10:44 -05:00
|
|
|
AudioRenderer(Core::Timing::CoreTiming& core_timing, Core::Memory::Memory& memory_,
|
2020-07-12 06:59:14 -05:00
|
|
|
AudioCommon::AudioRendererParameter params,
|
2020-12-28 20:23:42 -06:00
|
|
|
Stream::ReleaseCallback&& release_callback, std::size_t instance_number);
|
2018-09-14 10:54:17 -05:00
|
|
|
~AudioRenderer();
|
|
|
|
|
2020-11-16 21:14:29 -06:00
|
|
|
[[nodiscard]] ResultCode UpdateAudioRenderer(const std::vector<u8>& input_params,
|
|
|
|
std::vector<u8>& output_params);
|
2021-06-20 09:23:16 -05:00
|
|
|
[[nodiscard]] ResultCode Start();
|
|
|
|
[[nodiscard]] ResultCode Stop();
|
2018-08-04 16:45:14 -05:00
|
|
|
void QueueMixedBuffer(Buffer::Tag tag);
|
|
|
|
void ReleaseAndQueueBuffers();
|
2020-11-16 21:14:29 -06:00
|
|
|
[[nodiscard]] u32 GetSampleRate() const;
|
|
|
|
[[nodiscard]] u32 GetSampleCount() const;
|
|
|
|
[[nodiscard]] u32 GetMixBufferCount() const;
|
|
|
|
[[nodiscard]] Stream::State GetStreamState() const;
|
2018-08-04 16:45:14 -05:00
|
|
|
|
|
|
|
private:
|
2020-04-20 21:57:30 -05:00
|
|
|
BehaviorInfo behavior_info{};
|
2018-08-04 16:45:14 -05:00
|
|
|
|
2020-07-12 06:59:14 -05:00
|
|
|
AudioCommon::AudioRendererParameter worker_params;
|
|
|
|
std::vector<ServerMemoryPoolInfo> memory_pool_info;
|
|
|
|
VoiceContext voice_context;
|
|
|
|
EffectContext effect_context;
|
|
|
|
MixContext mix_context;
|
|
|
|
SinkContext sink_context;
|
|
|
|
SplitterContext splitter_context;
|
2018-08-04 16:45:14 -05:00
|
|
|
std::vector<VoiceState> voices;
|
2018-09-14 10:54:17 -05:00
|
|
|
std::unique_ptr<AudioOut> audio_out;
|
2019-11-26 13:10:49 -06:00
|
|
|
StreamPtr stream;
|
2020-03-31 14:10:44 -05:00
|
|
|
Core::Memory::Memory& memory;
|
2020-07-12 06:59:14 -05:00
|
|
|
CommandGenerator command_generator;
|
2020-06-12 23:04:28 -05:00
|
|
|
std::size_t elapsed_frame_count{};
|
2021-06-20 09:23:16 -05:00
|
|
|
Core::Timing::CoreTiming& core_timing;
|
|
|
|
std::shared_ptr<Core::Timing::EventType> process_event;
|
|
|
|
std::mutex mutex;
|
2018-08-04 16:45:14 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace AudioCore
|