summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/hwopus.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-12 05:13:29 +0200
committerGitHub <noreply@github.com>2018-09-12 05:13:29 +0200
commitc2451504396bfb3476baa23ad2460d186c33d3ac (patch)
treefb469ecb74fc29f0372400e42c9235b982a612d2 /src/core/hle/service/audio/hwopus.cpp
parentMerge pull request #1278 from tech4me/bg-color-fix (diff)
parentservice/audio: Replace includes with forward declarations where applicable (diff)
downloadyuzu-c2451504396bfb3476baa23ad2460d186c33d3ac.tar
yuzu-c2451504396bfb3476baa23ad2460d186c33d3ac.tar.gz
yuzu-c2451504396bfb3476baa23ad2460d186c33d3ac.tar.bz2
yuzu-c2451504396bfb3476baa23ad2460d186c33d3ac.tar.lz
yuzu-c2451504396bfb3476baa23ad2460d186c33d3ac.tar.xz
yuzu-c2451504396bfb3476baa23ad2460d186c33d3ac.tar.zst
yuzu-c2451504396bfb3476baa23ad2460d186c33d3ac.zip
Diffstat (limited to 'src/core/hle/service/audio/hwopus.cpp')
-rw-r--r--src/core/hle/service/audio/hwopus.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/service/audio/hwopus.cpp b/src/core/hle/service/audio/hwopus.cpp
index 341bfda42..668fef145 100644
--- a/src/core/hle/service/audio/hwopus.cpp
+++ b/src/core/hle/service/audio/hwopus.cpp
@@ -3,7 +3,12 @@
// Refer to the license.txt file included.
#include <cstring>
+#include <memory>
+#include <vector>
+
#include <opus.h>
+
+#include "common/common_funcs.h"
#include "common/logging/log.h"
#include "core/hle/ipc_helpers.h"
#include "core/hle/kernel/hle_ipc.h"