diff options
| author | 2016-04-30 03:49:11 -0400 | |
|---|---|---|
| committer | 2016-04-30 03:49:11 -0400 | |
| commit | c1f0044a4b10bdff45464e5957f7950a6059d0c9 (patch) | |
| tree | d9b4673f92da936ce763148f70b82bc7401dd968 /src/audio_core/sink_details.cpp | |
| parent | Merge pull request #1650 from JamePeng/update-the-ndm-code (diff) | |
| parent | Audio: Add sink selection to configuration files (diff) | |
| download | yuzu-c1f0044a4b10bdff45464e5957f7950a6059d0c9.tar.gz yuzu-c1f0044a4b10bdff45464e5957f7950a6059d0c9.tar.xz yuzu-c1f0044a4b10bdff45464e5957f7950a6059d0c9.zip | |
Merge pull request #1729 from MerryMage/null-sink
Audio Config: Implement null sink and implement sink configuration
Diffstat (limited to 'src/audio_core/sink_details.cpp')
| -rw-r--r-- | src/audio_core/sink_details.cpp | 18 |
1 files changed, 18 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..d2cc74103 --- /dev/null +++ b/src/audio_core/sink_details.cpp | |||
| @@ -0,0 +1,18 @@ | |||
| 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 | |||
| 11 | namespace AudioCore { | ||
| 12 | |||
| 13 | // g_sink_details is ordered in terms of desirability, with the best choice at the top. | ||
| 14 | const std::vector<SinkDetails> g_sink_details = { | ||
| 15 | { "null", []() { return std::make_unique<NullSink>(); } }, | ||
| 16 | }; | ||
| 17 | |||
| 18 | } // namespace AudioCore | ||