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
|
|
|
|
|
2018-09-12 01:36:07 +00:00
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
2018-07-28 17:40:50 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace AudioCore {
|
|
|
|
|
|
|
|
class Sink;
|
|
|
|
|
2018-12-13 21:23:31 +00:00
|
|
|
/// Retrieves the IDs for all available audio sinks.
|
|
|
|
std::vector<const char*> GetSinkIDs();
|
2018-08-02 03:55:59 +00:00
|
|
|
|
2018-12-13 21:23:31 +00:00
|
|
|
/// Gets the list of devices for a particular sink identified by the given ID.
|
|
|
|
std::vector<std::string> GetDeviceListForSink(std::string_view sink_id);
|
2018-07-28 17:40:50 +00:00
|
|
|
|
2018-12-13 21:23:31 +00:00
|
|
|
/// Creates an audio sink identified by the given device ID.
|
|
|
|
std::unique_ptr<Sink> CreateSinkFromID(std::string_view sink_id, std::string_view device_id);
|
2018-07-28 17:40:50 +00:00
|
|
|
|
|
|
|
} // namespace AudioCore
|