LibAudio+Userland: Remove Audio::LegacyBuffer

The file is now renamed to Queue.h, and the Resampler APIs with
LegacyBuffer are also removed. These changes look large because nobody
actually needs Buffer.h (or Queue.h). It was mostly transitive
dependencies on the massive list of includes in that header, which are
now almost all gone. Instead, we include common things like Sample.h
directly, which should give faster compile times as very few files
actually need Queue.h.
This commit is contained in:
kleines Filmröllchen 2022-04-23 12:30:36 +02:00 committed by Linus Groh
commit ab49fcfb7c
Notes: sideshowbarker 2024-07-17 20:33:50 +09:00
27 changed files with 39 additions and 297 deletions

View file

@ -7,7 +7,7 @@
#include "ConnectionFromClient.h"
#include "Mixer.h"
#include <AudioServer/AudioClientEndpoint.h>
#include <LibAudio/Buffer.h>
#include <LibAudio/Queue.h>
namespace AudioServer {