summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/hwopus.h
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2018-06-25 15:44:17 +0200
committermailwl <mailwl@gmail.com>2018-06-25 15:44:17 +0200
commit11fb17054e78e42a2ec3fdf72dc1cd2e695c7a2b (patch)
treeb9356a455e79ab92efef475b5710b81dcfac747c /src/core/hle/service/audio/hwopus.h
parentRemoved duplicate structs, changed AudioRendererResponse -> UpdateDataHeader (#583) (diff)
downloadyuzu-11fb17054e78e42a2ec3fdf72dc1cd2e695c7a2b.tar
yuzu-11fb17054e78e42a2ec3fdf72dc1cd2e695c7a2b.tar.gz
yuzu-11fb17054e78e42a2ec3fdf72dc1cd2e695c7a2b.tar.bz2
yuzu-11fb17054e78e42a2ec3fdf72dc1cd2e695c7a2b.tar.lz
yuzu-11fb17054e78e42a2ec3fdf72dc1cd2e695c7a2b.tar.xz
yuzu-11fb17054e78e42a2ec3fdf72dc1cd2e695c7a2b.tar.zst
yuzu-11fb17054e78e42a2ec3fdf72dc1cd2e695c7a2b.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/audio/hwopus.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/core/hle/service/audio/hwopus.h b/src/core/hle/service/audio/hwopus.h
new file mode 100644
index 000000000..090b8c825
--- /dev/null
+++ b/src/core/hle/service/audio/hwopus.h
@@ -0,0 +1,20 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Service::Audio {
+
+class HwOpus final : public ServiceFramework<HwOpus> {
+public:
+ explicit HwOpus();
+ ~HwOpus() = default;
+
+private:
+ void GetWorkBufferSize(Kernel::HLERequestContext& ctx);
+};
+
+} // namespace Service::Audio