2016-04-28 08:28:59 -05:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-09-11 20:36:07 -05:00
|
|
|
#include <string>
|
|
|
|
#include <string_view>
|
2016-04-28 08:28:59 -05:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace AudioCore {
|
|
|
|
|
|
|
|
class Sink;
|
|
|
|
|
2018-12-13 15:23:31 -06:00
|
|
|
/// Retrieves the IDs for all available audio sinks.
|
|
|
|
std::vector<const char*> GetSinkIDs();
|
2018-08-01 22:55:59 -05:00
|
|
|
|
2018-12-13 15:23:31 -06: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);
|
2016-04-28 08:28:59 -05:00
|
|
|
|
2018-12-13 15:23:31 -06: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);
|
2017-01-25 21:33:26 -06:00
|
|
|
|
2016-04-28 08:28:59 -05:00
|
|
|
} // namespace AudioCore
|