summaryrefslogtreecommitdiffstats
path: root/src/audio_core/renderer/audio_device.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-21 03:17:59 +0100
committerLiam <byteslice@airmail.cc>2024-02-21 04:15:38 +0100
commitc575a85233cfea2e0935a5609e4e13d980a8c28f (patch)
treeebfb39a093a2042a8d15769532089a83c883d21a /src/audio_core/renderer/audio_device.h
parentaudio: rewrite IHardwareOpusDecoderManager (diff)
downloadyuzu-c575a85233cfea2e0935a5609e4e13d980a8c28f.tar
yuzu-c575a85233cfea2e0935a5609e4e13d980a8c28f.tar.gz
yuzu-c575a85233cfea2e0935a5609e4e13d980a8c28f.tar.bz2
yuzu-c575a85233cfea2e0935a5609e4e13d980a8c28f.tar.lz
yuzu-c575a85233cfea2e0935a5609e4e13d980a8c28f.tar.xz
yuzu-c575a85233cfea2e0935a5609e4e13d980a8c28f.tar.zst
yuzu-c575a85233cfea2e0935a5609e4e13d980a8c28f.zip
Diffstat (limited to '')
-rw-r--r--src/audio_core/renderer/audio_device.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/audio_core/renderer/audio_device.h b/src/audio_core/renderer/audio_device.h
index ca4040add..4242dad30 100644
--- a/src/audio_core/renderer/audio_device.h
+++ b/src/audio_core/renderer/audio_device.h
@@ -36,20 +36,18 @@ public:
* Get a list of the available output devices.
*
* @param out_buffer - Output buffer to write the available device names.
- * @param max_count - Maximum number of devices to write (count of out_buffer).
* @return Number of device names written.
*/
- u32 ListAudioDeviceName(std::vector<AudioDeviceName>& out_buffer, size_t max_count) const;
+ u32 ListAudioDeviceName(std::span<AudioDeviceName> out_buffer) const;
/**
* Get a list of the available output devices.
* Different to above somehow...
*
* @param out_buffer - Output buffer to write the available device names.
- * @param max_count - Maximum number of devices to write (count of out_buffer).
* @return Number of device names written.
*/
- u32 ListAudioOutputDeviceName(std::vector<AudioDeviceName>& out_buffer, size_t max_count) const;
+ u32 ListAudioOutputDeviceName(std::span<AudioDeviceName> out_buffer) const;
/**
* Set the volume of all streams in the backend sink.