Files
ladybird/Libraries/LibMedia/Forward.h
Zaggy1024 972438c4d7 LibMedia: Abstract the interface of IncrementallyPopulatedStream
The way that other classes interact with IncrementallyPopulatedStream
is now through a virtual interface MediaStream and MediaStreamCursor.
This way, we can have simpler implementations of reading media data
that will not require an RB tree and synchronization.
2026-01-30 10:02:00 -06:00

33 lines
620 B
C++

/*
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
* Copyright (c) 2025, Gregory Bertilson <gregory@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Media {
class CodedFrame;
class AudioDataProvider;
class AudioDecoder;
class AudioMixingSink;
class AudioSink;
class DecoderError;
class Demuxer;
class DisplayingVideoSink;
class FrameQueueItem;
class IncrementallyPopulatedStream;
class MediaStream;
class MediaStreamCursor;
class MediaTimeProvider;
class PlaybackManager;
class Track;
class VideoDataProvider;
class VideoDecoder;
class VideoFrame;
class VideoSink;
}