diff options
Diffstat (limited to 'src/audio_core/sink_details.h')
| -rw-r--r-- | src/audio_core/sink_details.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/audio_core/sink_details.h b/src/audio_core/sink_details.h deleted file mode 100644 index 042766358..000000000 --- a/src/audio_core/sink_details.h +++ /dev/null | |||
| @@ -1,23 +0,0 @@ | |||
| 1 | // SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #pragma once | ||
| 5 | |||
| 6 | #include <string> | ||
| 7 | #include <string_view> | ||
| 8 | #include <vector> | ||
| 9 | |||
| 10 | namespace AudioCore { | ||
| 11 | |||
| 12 | class Sink; | ||
| 13 | |||
| 14 | /// Retrieves the IDs for all available audio sinks. | ||
| 15 | std::vector<const char*> GetSinkIDs(); | ||
| 16 | |||
| 17 | /// Gets the list of devices for a particular sink identified by the given ID. | ||
| 18 | std::vector<std::string> GetDeviceListForSink(std::string_view sink_id); | ||
| 19 | |||
| 20 | /// Creates an audio sink identified by the given device ID. | ||
| 21 | std::unique_ptr<Sink> CreateSinkFromID(std::string_view sink_id, std::string_view device_id); | ||
| 22 | |||
| 23 | } // namespace AudioCore | ||