summaryrefslogtreecommitdiff
path: root/src/audio_core/stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/audio_core/stream.h')
-rw-r--r--src/audio_core/stream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/stream.h b/src/audio_core/stream.h
index 049b92ca9..3a435982d 100644
--- a/src/audio_core/stream.h
+++ b/src/audio_core/stream.h
@@ -49,7 +49,7 @@ public:
49 bool ContainsBuffer(Buffer::Tag tag) const; 49 bool ContainsBuffer(Buffer::Tag tag) const;
50 50
51 /// Returns a vector of recently released buffers specified by tag 51 /// Returns a vector of recently released buffers specified by tag
52 std::vector<Buffer::Tag> GetTagsAndReleaseBuffers(size_t max_count); 52 std::vector<Buffer::Tag> GetTagsAndReleaseBuffers(std::size_t max_count);
53 53
54 /// Returns true if the stream is currently playing 54 /// Returns true if the stream is currently playing
55 bool IsPlaying() const { 55 bool IsPlaying() const {
@@ -57,7 +57,7 @@ public:
57 } 57 }
58 58
59 /// Returns the number of queued buffers 59 /// Returns the number of queued buffers
60 size_t GetQueueSize() const { 60 std::size_t GetQueueSize() const {
61 return queued_buffers.size(); 61 return queued_buffers.size();
62 } 62 }
63 63