summaryrefslogtreecommitdiffstats
path: root/src/audio_core/stream.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-14 18:06:00 +0200
committerLioncash <mathew1800@gmail.com>2018-09-17 21:08:34 +0200
commit2fd124bc9371dbbcb43d8eec7fbeb22032a9a753 (patch)
tree6169b20a355b6d5bcb2166c205302c814c61d116 /src/audio_core/stream.h
parentaudio_renderer: Replace includes with forward declarations where applicable (diff)
downloadyuzu-2fd124bc9371dbbcb43d8eec7fbeb22032a9a753.tar
yuzu-2fd124bc9371dbbcb43d8eec7fbeb22032a9a753.tar.gz
yuzu-2fd124bc9371dbbcb43d8eec7fbeb22032a9a753.tar.bz2
yuzu-2fd124bc9371dbbcb43d8eec7fbeb22032a9a753.tar.lz
yuzu-2fd124bc9371dbbcb43d8eec7fbeb22032a9a753.tar.xz
yuzu-2fd124bc9371dbbcb43d8eec7fbeb22032a9a753.tar.zst
yuzu-2fd124bc9371dbbcb43d8eec7fbeb22032a9a753.zip
Diffstat (limited to 'src/audio_core/stream.h')
-rw-r--r--src/audio_core/stream.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/audio_core/stream.h b/src/audio_core/stream.h
index 3a435982d..27db1112f 100644
--- a/src/audio_core/stream.h
+++ b/src/audio_core/stream.h
@@ -11,13 +11,16 @@
#include <queue>
#include "audio_core/buffer.h"
-#include "audio_core/sink_stream.h"
-#include "common/assert.h"
#include "common/common_types.h"
-#include "core/core_timing.h"
+
+namespace CoreTiming {
+struct EventType;
+}
namespace AudioCore {
+class SinkStream;
+
/**
* Represents an audio stream, which is a sequence of queued buffers, to be outputed by AudioOut
*/