mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 02:27:19 +02:00
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.
33 lines
620 B
C++
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;
|
|
|
|
}
|