AudioCore: SDL2 Sink
This commit is contained in:
parent
c1f0044a4b
commit
920d2cf41d
9 changed files with 182 additions and 3 deletions
|
@ -8,10 +8,17 @@
|
|||
#include "audio_core/null_sink.h"
|
||||
#include "audio_core/sink_details.h"
|
||||
|
||||
#ifdef HAVE_SDL2
|
||||
#include "audio_core/sdl2_sink.h"
|
||||
#endif
|
||||
|
||||
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 = {
|
||||
#ifdef HAVE_SDL2
|
||||
{ "sdl2", []() { return std::make_unique<SDL2Sink>(); } },
|
||||
#endif
|
||||
{ "null", []() { return std::make_unique<NullSink>(); } },
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue