summaryrefslogtreecommitdiff
path: root/src/audio_core/sink_details.cpp
diff options
context:
space:
mode:
authorGravatar MerryMage2016-04-28 14:28:59 +0100
committerGravatar MerryMage2016-04-30 07:39:48 +0100
commit8b94422e3e51d29171c7e8cc02bec1fbec9b29ea (patch)
tree2a81a3f8172611c8b9d01ec0ca7bf56f78ac126f /src/audio_core/sink_details.cpp
parentAudioCore: Implement NullSink (diff)
downloadyuzu-8b94422e3e51d29171c7e8cc02bec1fbec9b29ea.tar.gz
yuzu-8b94422e3e51d29171c7e8cc02bec1fbec9b29ea.tar.xz
yuzu-8b94422e3e51d29171c7e8cc02bec1fbec9b29ea.zip
AudioCore: List of sink types
Diffstat (limited to 'src/audio_core/sink_details.cpp')
-rw-r--r--src/audio_core/sink_details.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/audio_core/sink_details.cpp b/src/audio_core/sink_details.cpp
new file mode 100644
index 000000000..20412daaf
--- /dev/null
+++ b/src/audio_core/sink_details.cpp
@@ -0,0 +1,17 @@
1// Copyright 2016 Citra Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#include <memory>
6#include <vector>
7
8#include "audio_core/null_sink.h"
9#include "audio_core/sink_details.h"
10
11namespace AudioCore {
12
13const std::vector<SinkDetails> g_sink_details = {
14 { "null", []() { return std::make_unique<NullSink>(); } },
15};
16
17} // namespace AudioCore