summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audren_u.cpp
diff options
context:
space:
mode:
authorMorph1984 <39850852+Morph1984@users.noreply.github.com>2019-09-04 05:13:32 +0200
committerGitHub <noreply@github.com>2019-09-04 05:13:32 +0200
commit1449ed9dbf7d968d9db2e5bc04b97c4950086a47 (patch)
treeb0f4fd13421a3f664fbd87381a902214cba49123 /src/core/hle/service/audio/audren_u.cpp
parentMerge pull request #2765 from FernandoS27/dma-fix (diff)
downloadyuzu-1449ed9dbf7d968d9db2e5bc04b97c4950086a47.tar
yuzu-1449ed9dbf7d968d9db2e5bc04b97c4950086a47.tar.gz
yuzu-1449ed9dbf7d968d9db2e5bc04b97c4950086a47.tar.bz2
yuzu-1449ed9dbf7d968d9db2e5bc04b97c4950086a47.tar.lz
yuzu-1449ed9dbf7d968d9db2e5bc04b97c4950086a47.tar.xz
yuzu-1449ed9dbf7d968d9db2e5bc04b97c4950086a47.tar.zst
yuzu-1449ed9dbf7d968d9db2e5bc04b97c4950086a47.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/audio/audren_u.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/audren_u.cpp b/src/core/hle/service/audio/audren_u.cpp
index 5b0b7f17e..8e0cd96be 100644
--- a/src/core/hle/service/audio/audren_u.cpp
+++ b/src/core/hle/service/audio/audren_u.cpp
@@ -173,7 +173,7 @@ public:
{7, &IAudioDevice::SetAudioDeviceOutputVolume, "SetAudioDeviceOutputVolumeAuto"},
{8, nullptr, "GetAudioDeviceOutputVolumeAuto"},
{10, &IAudioDevice::GetActiveAudioDeviceName, "GetActiveAudioDeviceNameAuto"},
- {11, nullptr, "QueryAudioDeviceInputEvent"},
+ {11, &IAudioDevice::QueryAudioDeviceInputEvent, "QueryAudioDeviceInputEvent"},
{12, &IAudioDevice::QueryAudioDeviceOutputEvent, "QueryAudioDeviceOutputEvent"},
{13, nullptr, "GetAudioSystemMasterVolumeSetting"},
};
@@ -183,6 +183,10 @@ public:
buffer_event = Kernel::WritableEvent::CreateEventPair(kernel, Kernel::ResetType::Automatic,
"IAudioOutBufferReleasedEvent");
+ // Should be similar to audio_output_device_switch_event
+ audio_input_device_switch_event = Kernel::WritableEvent::CreateEventPair(
+ kernel, Kernel::ResetType::Automatic, "IAudioDevice:AudioInputDeviceSwitchedEvent");
+
// Should only be signalled when an audio output device has been changed, example: speaker
// to headset
audio_output_device_switch_event = Kernel::WritableEvent::CreateEventPair(
@@ -279,6 +283,15 @@ private:
rb.Push<u32>(1);
}
+ // Should be similar to QueryAudioDeviceOutputEvent
+ void QueryAudioDeviceInputEvent(Kernel::HLERequestContext& ctx) {
+ LOG_WARNING(Service_Audio, "(STUBBED) called");
+
+ IPC::ResponseBuilder rb{ctx, 2, 1};
+ rb.Push(RESULT_SUCCESS);
+ rb.PushCopyObjects(audio_input_device_switch_event.readable);
+ }
+
void QueryAudioDeviceOutputEvent(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_Audio, "called");