diff options
| author | 2018-04-10 18:53:33 +0300 | |
|---|---|---|
| committer | 2018-04-10 18:53:33 +0300 | |
| commit | c0011fdacd251105702cbed6e32c67b2cceaa74a (patch) | |
| tree | f99a002daf128d8e7214368d4c2b9dea9847e766 /src | |
| parent | Updated audout with more service names. (diff) | |
| download | yuzu-c0011fdacd251105702cbed6e32c67b2cceaa74a.tar.gz yuzu-c0011fdacd251105702cbed6e32c67b2cceaa74a.tar.xz yuzu-c0011fdacd251105702cbed6e32c67b2cceaa74a.zip | |
Updated audrec with more service names.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/audio/audrec_u.cpp | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/core/hle/service/audio/audrec_u.cpp b/src/core/hle/service/audio/audrec_u.cpp index f2626ec70..953104f19 100644 --- a/src/core/hle/service/audio/audrec_u.cpp +++ b/src/core/hle/service/audio/audrec_u.cpp | |||
| @@ -14,13 +14,15 @@ class IFinalOutputRecorder final : public ServiceFramework<IFinalOutputRecorder> | |||
| 14 | public: | 14 | public: |
| 15 | IFinalOutputRecorder() : ServiceFramework("IFinalOutputRecorder") { | 15 | IFinalOutputRecorder() : ServiceFramework("IFinalOutputRecorder") { |
| 16 | static const FunctionInfo functions[] = { | 16 | static const FunctionInfo functions[] = { |
| 17 | {0x0, nullptr, "GetFinalOutputRecorderState"}, | 17 | {0, nullptr, "GetFinalOutputRecorderState"}, |
| 18 | {0x1, nullptr, "StartFinalOutputRecorder"}, | 18 | {1, nullptr, "StartFinalOutputRecorder"}, |
| 19 | {0x2, nullptr, "StopFinalOutputRecorder"}, | 19 | {2, nullptr, "StopFinalOutputRecorder"}, |
| 20 | {0x3, nullptr, "AppendFinalOutputRecorderBuffer"}, | 20 | {3, nullptr, "AppendFinalOutputRecorderBuffer"}, |
| 21 | {0x4, nullptr, "RegisterBufferEvent"}, | 21 | {4, nullptr, "RegisterBufferEvent"}, |
| 22 | {0x5, nullptr, "GetReleasedFinalOutputRecorderBuffer"}, | 22 | {5, nullptr, "GetReleasedFinalOutputRecorderBuffer"}, |
| 23 | {0x6, nullptr, "ContainsFinalOutputRecorderBuffer"}, | 23 | {6, nullptr, "ContainsFinalOutputRecorderBuffer"}, |
| 24 | {8, nullptr, "AppendFinalOutputRecorderBufferAuto"}, | ||
| 25 | {9, nullptr, "GetReleasedFinalOutputRecorderBufferAuto"}, | ||
| 24 | }; | 26 | }; |
| 25 | RegisterHandlers(functions); | 27 | RegisterHandlers(functions); |
| 26 | } | 28 | } |