mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-11 02:29:18 +00:00
VP9 continues to function, but this also allows AV1 to be decoded. With this commit, H.264 is still non-functional, as the decoder requires some extra initial data from the track definition in the Matroska file.
13 lines
200 B
C
13 lines
200 B
C
/*
|
|
* Copyright (c) 2024, Gregory Bertilson <zaggy1024@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
extern "C" {
|
|
struct AVCodecContext;
|
|
struct AVPacket;
|
|
struct AVFrame;
|
|
}
|