1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 22:47:45 +00:00

LibAudio: Create a playback class with a PulseAudio implementation

This adds an abstract `Audio::PlaybackStream` class to allow cross-
platform audio playback to be done in an opaque manner by applications
in both Serenity and Lagom.

Currently, the only supported audio API is PulseAudio, but a Serenity
implementation should be added shortly as well.
This commit is contained in:
Zaggy1024 2023-07-04 04:55:53 -05:00 committed by Andrew Kaster
parent fe672989a9
commit bc4d4f0f95
9 changed files with 1041 additions and 0 deletions

View file

@ -10,6 +10,7 @@ namespace Audio {
class ConnectionToServer;
class Loader;
class PlaybackStream;
struct Sample;
template<typename SampleType>