mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:47:35 +00:00
AudioServer: Rename BufferQueue to ClientAudioStream
Although the old name is more technically correct, it doesn't reflect what the class is actually doing in the context of the audio server logic.
This commit is contained in:
parent
ab4a2b8b41
commit
5300c9e6b4
4 changed files with 12 additions and 12 deletions
|
@ -17,7 +17,7 @@ class Buffer;
|
|||
|
||||
namespace AudioServer {
|
||||
|
||||
class BufferQueue;
|
||||
class ClientAudioStream;
|
||||
class Mixer;
|
||||
|
||||
class ClientConnection final : public IPC::ClientConnection<AudioClientEndpoint, AudioServerEndpoint> {
|
||||
|
@ -49,7 +49,7 @@ private:
|
|||
virtual Messages::AudioServer::GetSampleRateResponse get_sample_rate() override;
|
||||
|
||||
Mixer& m_mixer;
|
||||
RefPtr<BufferQueue> m_queue;
|
||||
RefPtr<ClientAudioStream> m_queue;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue