feat(audio): Add REV13 audio renderer support

- Implement compressor statistics collection and tracking
- Add explicit splitter volume reset functionality
- Implement REV13 audio device notification commands
- Update feature support system to revision 13
- Maintain backward compatibility with older revisions

Resolves REV13 audio renderer feature requirements with proper
Nintendo Switch development practices and SwitchBrew compatibility.

REF: a2c0035013
Signed-off-by: Zephyron <zephyron@citron-emu.org>
This commit is contained in:
Zephyron
2025-09-27 10:13:32 +10:00
parent 0001539f4a
commit 2fa3501ff4
13 changed files with 263 additions and 8 deletions

View File

@@ -9,6 +9,8 @@
#include "audio_core/renderer/audio_device.h"
#include "audio_core/sink/sink.h"
#include "core/core.h"
#include "core/hle/service/audio/errors.h"
#include "core/hle/result.h"
namespace AudioCore::Renderer {
@@ -69,4 +71,93 @@ f32 AudioDevice::GetDeviceVolume([[maybe_unused]] std::string_view name) const {
return output_sink.GetDeviceVolume();
}
Result AudioDevice::AcquireAudioOutputDeviceNotification(u32& event_handle, u64 device_id) const {
// Check if REV13+ features are supported
if (!CheckFeatureSupported(SupportTags::CompressorStatistics, user_revision)) {
return Service::Audio::ResultNotSupported;
}
// Track the notification request
output_device_notifications[device_id] = true;
// For now, return a dummy event handle
event_handle = static_cast<u32>(device_id & 0xFFFFFFFF);
return ResultSuccess;
}
Result AudioDevice::ReleaseAudioOutputDeviceNotification(u64 device_id) const {
// Check if REV13+ features are supported
if (!CheckFeatureSupported(SupportTags::CompressorStatistics, user_revision)) {
return Service::Audio::ResultNotSupported;
}
// Remove the notification tracking
auto it = output_device_notifications.find(device_id);
if (it != output_device_notifications.end()) {
output_device_notifications.erase(it);
}
return ResultSuccess;
}
Result AudioDevice::AcquireAudioInputDeviceNotification(u32& event_handle, u64 device_id) const {
// Check if REV13+ features are supported
if (!CheckFeatureSupported(SupportTags::CompressorStatistics, user_revision)) {
return Service::Audio::ResultNotSupported;
}
// Track the notification request
input_device_notifications[device_id] = true;
// For now, return a dummy event handle
event_handle = static_cast<u32>(device_id & 0xFFFFFFFF);
return ResultSuccess;
}
Result AudioDevice::ReleaseAudioInputDeviceNotification(u64 device_id) const {
// Check if REV13+ features are supported
if (!CheckFeatureSupported(SupportTags::CompressorStatistics, user_revision)) {
return Service::Audio::ResultNotSupported;
}
// Remove the notification tracking
auto it = input_device_notifications.find(device_id);
if (it != input_device_notifications.end()) {
input_device_notifications.erase(it);
}
return ResultSuccess;
}
Result AudioDevice::SetAudioDeviceOutputVolumeAutoTuneEnabled(bool enabled) const {
// Check if REV13+ features are supported
if (!CheckFeatureSupported(SupportTags::CompressorStatistics, user_revision)) {
return Service::Audio::ResultNotSupported;
}
// Set the auto tune state
auto_tune_enabled = enabled;
// Apply auto tune to the sink if supported
if (enabled) {
// For now, we just track the state
}
return ResultSuccess;
}
Result AudioDevice::IsAudioDeviceOutputVolumeAutoTuneEnabled(bool& enabled) const {
// Check if REV13+ features are supported
if (!CheckFeatureSupported(SupportTags::CompressorStatistics, user_revision)) {
return Service::Audio::ResultNotSupported;
}
// Return the current auto tune state
enabled = auto_tune_enabled;
return ResultSuccess;
}
} // namespace AudioCore::Renderer