summaryrefslogtreecommitdiffstats
path: root/src/audio_core/out/audio_out.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2022-09-16 15:38:17 +0200
committerLioncash <mathew1800@gmail.com>2022-09-16 15:45:51 +0200
commitd1f3c121a04fdc1e4d8840ef6a5bbb65212ed7a7 (patch)
treec5f475b24fa39614aa9257d248928fb51b152520 /src/audio_core/out/audio_out.h
parentaudio_buffers: Pass by const-ref in AppendBuffers (diff)
downloadyuzu-d1f3c121a04fdc1e4d8840ef6a5bbb65212ed7a7.tar
yuzu-d1f3c121a04fdc1e4d8840ef6a5bbb65212ed7a7.tar.gz
yuzu-d1f3c121a04fdc1e4d8840ef6a5bbb65212ed7a7.tar.bz2
yuzu-d1f3c121a04fdc1e4d8840ef6a5bbb65212ed7a7.tar.lz
yuzu-d1f3c121a04fdc1e4d8840ef6a5bbb65212ed7a7.tar.xz
yuzu-d1f3c121a04fdc1e4d8840ef6a5bbb65212ed7a7.tar.zst
yuzu-d1f3c121a04fdc1e4d8840ef6a5bbb65212ed7a7.zip
Diffstat (limited to 'src/audio_core/out/audio_out.h')
-rw-r--r--src/audio_core/out/audio_out.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/audio_core/out/audio_out.h b/src/audio_core/out/audio_out.h
index f6b921645..946f345c6 100644
--- a/src/audio_core/out/audio_out.h
+++ b/src/audio_core/out/audio_out.h
@@ -102,7 +102,7 @@ public:
*
* @return The current volume.
*/
- f32 GetVolume();
+ f32 GetVolume() const;
/**
* Set the system volume.
@@ -117,21 +117,21 @@ public:
* @param tag - The tag to search for.
* @return True if the buffer is in the system, otherwise false.
*/
- bool ContainsAudioBuffer(u64 tag);
+ bool ContainsAudioBuffer(u64 tag) const;
/**
* Get the maximum number of buffers.
*
* @return The maximum number of buffers.
*/
- u32 GetBufferCount();
+ u32 GetBufferCount() const;
/**
* Get the total played sample count for this audio out.
*
* @return The played sample count.
*/
- u64 GetPlayedSampleCount();
+ u64 GetPlayedSampleCount() const;
private:
/// The AudioOut::Manager this audio out is registered with