mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 04:55:09 +00:00
LibAudio: Put all classes in the Audio namespace and remove leading A
This commit is contained in:
parent
0bce5f7403
commit
92f77864de
20 changed files with 127 additions and 103 deletions
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "PlaybackManager.h"
|
||||
|
||||
PlaybackManager::PlaybackManager(NonnullRefPtr<AClientConnection> connection)
|
||||
PlaybackManager::PlaybackManager(NonnullRefPtr<Audio::ClientConnection> connection)
|
||||
: m_connection(connection)
|
||||
{
|
||||
m_timer = Core::Timer::construct(100, [&]() {
|
||||
|
@ -41,7 +41,7 @@ PlaybackManager::~PlaybackManager()
|
|||
{
|
||||
}
|
||||
|
||||
void PlaybackManager::set_loader(OwnPtr<AWavLoader>&& loader)
|
||||
void PlaybackManager::set_loader(OwnPtr<Audio::WavLoader>&& loader)
|
||||
{
|
||||
stop();
|
||||
m_loader = move(loader);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue