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.
|
|
|
|
|
2017-01-26 04:33:26 +01:00
|
|
|
#include <algorithm>
|
2016-04-28 15:28:59 +02:00
|
|
|
#include <memory>
|
2017-12-20 19:44:32 +01:00
|
|
|
#include <string>
|
2016-04-28 15:28:59 +02:00
|
|
|
#include <vector>
|
|
|
|
#include "audio_core/null_sink.h"
|
2016-09-21 08:52:38 +02:00
|
|
|
#include "audio_core/sink_details.h"
|
2016-04-27 11:57:29 +02:00
|
|
|
#ifdef HAVE_SDL2
|
|
|
|
#include "audio_core/sdl2_sink.h"
|
|
|
|
#endif
|
2018-05-25 07:58:53 +02:00
|
|
|
#ifdef HAVE_CUBEB
|
2018-05-25 07:50:37 +02:00
|
|
|
#include "audio_core/cubeb_sink.h"
|
2018-05-25 07:58:53 +02:00
|
|
|
#endif
|
2017-01-26 04:33:26 +01:00
|
|
|
#include "common/logging/log.h"
|
2016-04-27 11:57:29 +02:00
|
|
|
|
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 = {
|
2018-05-25 07:58:53 +02:00
|
|
|
#ifdef HAVE_CUBEB
|
2018-07-02 15:03:14 +02:00
|
|
|
SinkDetails{"cubeb", &std::make_unique<CubebSink, std::string>, &ListCubebSinkDevices},
|
2018-05-25 07:58:53 +02:00
|
|
|
#endif
|
2016-04-27 11:57:29 +02:00
|
|
|
#ifdef HAVE_SDL2
|
2018-07-02 15:03:14 +02:00
|
|
|
SinkDetails{"sdl2", &std::make_unique<SDL2Sink, std::string>, &ListSDL2SinkDevices},
|
2016-04-27 11:57:29 +02:00
|
|
|
#endif
|
2018-07-02 15:03:14 +02:00
|
|
|
SinkDetails{"null", &std::make_unique<NullSink, std::string>,
|
|
|
|
[] { return std::vector<std::string>{"null"}; }},
|
2016-04-28 15:28:59 +02:00
|
|
|
};
|
|
|
|
|
2018-09-12 03:36:07 +02:00
|
|
|
const SinkDetails& GetSinkDetails(std::string_view sink_id) {
|
2017-01-26 04:33:26 +01:00
|
|
|
auto iter =
|
|
|
|
std::find_if(g_sink_details.begin(), g_sink_details.end(),
|
|
|
|
[sink_id](const auto& sink_detail) { return sink_detail.id == sink_id; });
|
|
|
|
|
|
|
|
if (sink_id == "auto" || iter == g_sink_details.end()) {
|
|
|
|
if (sink_id != "auto") {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_ERROR(Audio, "AudioCore::SelectSink given invalid sink_id {}", sink_id);
|
2017-01-26 04:33:26 +01:00
|
|
|
}
|
|
|
|
// Auto-select.
|
|
|
|
// g_sink_details is ordered in terms of desirability, with the best choice at the front.
|
|
|
|
iter = g_sink_details.begin();
|
|
|
|
}
|
|
|
|
|
|
|
|
return *iter;
|
|
|
|
}
|
|
|
|
|
2016-04-28 15:28:59 +02:00
|
|
|
} // namespace AudioCore
|