mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
All our current demuxers have these constant for an entire track, so we don't need to get them for every frame we output.
20 lines
238 B
C++
20 lines
238 B
C++
/*
|
|
* Copyright (c) 2022, Gregory Bertilson <zaggy1024@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Media {
|
|
|
|
class CodedVideoFrameData {
|
|
public:
|
|
CodedVideoFrameData()
|
|
{
|
|
}
|
|
|
|
private:
|
|
};
|
|
|
|
}
|