audio_out: Use Buffer::Tag alias in GetTagsAndReleaseBuffers()'s prototype

This makes the Buffer::Tag usage consistent with the Stream class's
prototype of GetTagsAndReleaseBuffers().
This commit is contained in:
Lioncash 2018-08-02 00:10:21 -04:00
parent 746d7d4d28
commit c1c397d37c
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ public:
Stream::ReleaseCallback&& release_callback);
/// Returns a vector of recently released buffers specified by tag for the specified stream
std::vector<u64> GetTagsAndReleaseBuffers(StreamPtr stream, size_t max_count);
std::vector<Buffer::Tag> GetTagsAndReleaseBuffers(StreamPtr stream, size_t max_count);
/// Starts an audio stream for playback
void StartStream(StreamPtr stream);