mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
7c10e1a08d
This change is in preparation for implementing audio codecs into the library and using audio as timing for video playback.
19 lines
278 B
C++
19 lines
278 B
C++
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Media {
|
|
|
|
class DecoderError;
|
|
class FrameQueueItem;
|
|
class PlaybackManager;
|
|
class Sample;
|
|
class Track;
|
|
class VideoDecoder;
|
|
class VideoFrame;
|
|
|
|
}
|