Audio: Add sink selection to configuration files

This commit is contained in:
MerryMage 2016-04-27 13:53:23 +01:00
parent 8b94422e3e
commit 4e971f44a2
10 changed files with 79 additions and 4 deletions

View file

@ -10,6 +10,7 @@
namespace AudioCore {
// g_sink_details is ordered in terms of desirability, with the best choice at the top.
const std::vector<SinkDetails> g_sink_details = {
{ "null", []() { return std::make_unique<NullSink>(); } },
};