|
|
|
@ -36,8 +36,8 @@ IAudioDevice::IAudioDevice(Core::System& system_, u64 applet_resource_user_id, u |
|
|
|
{16, nullptr, "ReleaseAudioInputDeviceNotification"}, //17.0.0+
|
|
|
|
{17, nullptr, "AcquireAudioOutputDeviceNotification"}, //17.0.0+
|
|
|
|
{18, nullptr, "ReleaseAudioOutputDeviceNotification"}, //17.0.0+
|
|
|
|
{19, nullptr, "SetAudioDeviceOutputVolumeAutoTuneEnabled"}, //18.0.0+
|
|
|
|
{20, nullptr, "IsAudioDeviceOutputVolumeAutoTuneEnabled"}, //18.0.0+
|
|
|
|
{19, D<&IAudioDevice::SetAudioDeviceOutputVolumeAutoTuneEnabled>, "SetAudioDeviceOutputVolumeAutoTuneEnabled"}, //18.0.0+
|
|
|
|
{20, D<&IAudioDevice::IsAudioDeviceOutputVolumeAutoTuneEnabled>, "IsAudioDeviceOutputVolumeAutoTuneEnabled"}, //18.0.0+
|
|
|
|
{21, nullptr, "IsActiveOutputDeviceEstimatedLowLatency"} //21.0.0+
|
|
|
|
}; |
|
|
|
RegisterHandlers(functions); |
|
|
|
@ -170,4 +170,15 @@ Result IAudioDevice::ListAudioOutputDeviceName( |
|
|
|
R_SUCCEED(); |
|
|
|
} |
|
|
|
|
|
|
|
Result IAudioDevice::SetAudioDeviceOutputVolumeAutoTuneEnabled(bool enabled) { |
|
|
|
LOG_WARNING(Service_Audio, "(STUBBED) called"); |
|
|
|
R_SUCCEED(); |
|
|
|
} |
|
|
|
|
|
|
|
Result IAudioDevice::IsAudioDeviceOutputVolumeAutoTuneEnabled(Out<bool> out_enabled) { |
|
|
|
LOG_WARNING(Service_Audio, "(STUBBED) called"); |
|
|
|
*out_enabled = false; |
|
|
|
R_SUCCEED(); |
|
|
|
} |
|
|
|
|
|
|
|
} // namespace Service::Audio
|