2016-04-28 15:28:59 +02:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-09-20 17:21:23 +02:00
|
|
|
#include "audio_core/sink_details.h"
|
2016-04-28 15:28:59 +02:00
|
|
|
#include <memory>
|
|
|
|
#include <vector>
|
|
|
|
#include "audio_core/null_sink.h"
|
2016-04-27 11:57:29 +02:00
|
|
|
#ifdef HAVE_SDL2
|
|
|
|
#include "audio_core/sdl2_sink.h"
|
|
|
|
#endif
|
|
|
|
|
2016-04-28 15:28:59 +02:00
|
|
|
namespace AudioCore {
|
|
|
|
|
2016-04-27 14:53:23 +02:00
|
|
|
// g_sink_details is ordered in terms of desirability, with the best choice at the top.
|
2016-04-28 15:28:59 +02:00
|
|
|
const std::vector<SinkDetails> g_sink_details = {
|
2016-04-27 11:57:29 +02:00
|
|
|
#ifdef HAVE_SDL2
|
2016-09-18 02:38:01 +02:00
|
|
|
{"sdl2", []() { return std::make_unique<SDL2Sink>(); }},
|
2016-04-27 11:57:29 +02:00
|
|
|
#endif
|
2016-09-18 02:38:01 +02:00
|
|
|
{"null", []() { return std::make_unique<NullSink>(); }},
|
2016-04-28 15:28:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace AudioCore
|