diff options
author | Lioncash <mathew1800@gmail.com> | 2019-04-10 20:48:37 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-04-11 08:47:00 +0200 |
commit | ca96dc46767afcc6f6d9eedf68938c0a948cfecf (patch) | |
tree | 280b50ba4626e7e437ae1f560cf2b4effb3650c9 /src/core/hle/service/audio | |
parent | Merge pull request #2354 from lioncash/header (diff) | |
download | yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.tar yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.tar.gz yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.tar.bz2 yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.tar.lz yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.tar.xz yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.tar.zst yuzu-ca96dc46767afcc6f6d9eedf68938c0a948cfecf.zip |
Diffstat (limited to 'src/core/hle/service/audio')
-rw-r--r-- | src/core/hle/service/audio/audin_u.cpp | 1 | ||||
-rw-r--r-- | src/core/hle/service/audio/audout_u.cpp | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/audin_u.cpp b/src/core/hle/service/audio/audin_u.cpp index e5daefdde..d7f1d348d 100644 --- a/src/core/hle/service/audio/audin_u.cpp +++ b/src/core/hle/service/audio/audin_u.cpp @@ -25,6 +25,7 @@ public: {11, nullptr, "GetAudioInBufferCount"}, {12, nullptr, "SetAudioInDeviceGain"}, {13, nullptr, "GetAudioInDeviceGain"}, + {14, nullptr, "FlushAudioInBuffers"}, }; // clang-format on diff --git a/src/core/hle/service/audio/audout_u.cpp b/src/core/hle/service/audio/audout_u.cpp index 39acb7b23..12875fb42 100644 --- a/src/core/hle/service/audio/audout_u.cpp +++ b/src/core/hle/service/audio/audout_u.cpp @@ -44,7 +44,7 @@ public: std::string&& unique_name) : ServiceFramework("IAudioOut"), audio_core(audio_core), device_name(std::move(device_name)), audio_params(audio_params) { - + // clang-format off static const FunctionInfo functions[] = { {0, &IAudioOut::GetAudioOutState, "GetAudioOutState"}, {1, &IAudioOut::StartAudioOut, "StartAudioOut"}, @@ -58,7 +58,10 @@ public: {9, &IAudioOut::GetAudioOutBufferCount, "GetAudioOutBufferCount"}, {10, nullptr, "GetAudioOutPlayedSampleCount"}, {11, nullptr, "FlushAudioOutBuffers"}, + {12, nullptr, "SetAudioOutVolume"}, + {13, nullptr, "GetAudioOutVolume"}, }; + // clang-format on RegisterHandlers(functions); // This is the event handle used to check if the audio buffer was released |