Files
ladybird/Userland/Libraries/LibMedia/Audio/Forward.h
Jelle Raaijmakers 85fd2e281b LibMedia: Absorb LibAudio
LibMedia will be responsible for both audio and video decoding.
2024-09-12 10:01:19 +02:00

23 lines
325 B
C++

/*
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Audio {
class ConnectionToServer;
class Loader;
class Encoder;
struct Person;
struct Metadata;
class PlaybackStream;
struct Sample;
template<typename SampleType>
class ResampleHelper;
}