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-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 {
|
|
|
|
SinkDetails(const char* id_, std::function<std::unique_ptr<Sink>(std::string)> factory_,
|
|
|
|
std::function<std::vector<std::string>()> 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.
|
|
|
|
std::function<std::unique_ptr<Sink>(std::string device_id)> factory;
|
|
|
|
/// A method to call to list available devices.
|
|
|
|
std::function<std::vector<std::string>()> list_devices;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern const std::vector<SinkDetails> g_sink_details;
|
|
|
|
|
|
|
|
const SinkDetails& GetSinkDetails(std::string sink_id);
|
|
|
|
|
|
|
|
} // namespace AudioCore
|