2018-07-28 17:40:50 +00:00
|
|
|
// Copyright 2018 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <memory>
|
2018-09-12 01:36:07 +00:00
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
2018-08-02 03:50:45 +00:00
|
|
|
#include <utility>
|
2018-07-28 17:40:50 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace AudioCore {
|
|
|
|
|
|
|
|
class Sink;
|
|
|
|
|
|
|
|
struct SinkDetails {
|
2018-08-02 03:55:59 +00:00
|
|
|
using FactoryFn = std::function<std::unique_ptr<Sink>(std::string)>;
|
|
|
|
using ListDevicesFn = std::function<std::vector<std::string>()>;
|
|
|
|
|
|
|
|
SinkDetails(const char* id_, FactoryFn factory_, ListDevicesFn list_devices_)
|
2018-08-02 03:50:45 +00:00
|
|
|
: id(id_), factory(std::move(factory_)), list_devices(std::move(list_devices_)) {}
|
2018-07-28 17:40:50 +00:00
|
|
|
|
|
|
|
/// Name for this sink.
|
|
|
|
const char* id;
|
|
|
|
/// A method to call to construct an instance of this type of sink.
|
2018-08-02 03:55:59 +00:00
|
|
|
FactoryFn factory;
|
2018-07-28 17:40:50 +00:00
|
|
|
/// A method to call to list available devices.
|
2018-08-02 03:55:59 +00:00
|
|
|
ListDevicesFn list_devices;
|
2018-07-28 17:40:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern const std::vector<SinkDetails> g_sink_details;
|
|
|
|
|
2018-09-12 01:36:07 +00:00
|
|
|
const SinkDetails& GetSinkDetails(std::string_view sink_id);
|
2018-07-28 17:40:50 +00:00
|
|
|
|
|
|
|
} // namespace AudioCore
|