mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 15:09:42 +00:00
This should be a clearer name, as "sample" is most often used to refer to the output of a decoder.
19 lines
282 B
C++
19 lines
282 B
C++
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Media {
|
|
|
|
class CodedFrame;
|
|
class DecoderError;
|
|
class FrameQueueItem;
|
|
class PlaybackManager;
|
|
class Track;
|
|
class VideoDecoder;
|
|
class VideoFrame;
|
|
|
|
}
|