yuzu/src/audio_core/sink_details.cpp

26 lines
638 B
C++
Raw Normal View History

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