mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
27 lines
514 B
C
27 lines
514 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2022, Gregory Bertilson <zaggy1024@gmail.com>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <LibMedia/Color/CodingIndependentCodePoints.h>
|
||
|
|
|
||
|
|
namespace Media::Video {
|
||
|
|
|
||
|
|
class VideoSampleData {
|
||
|
|
public:
|
||
|
|
VideoSampleData(CodingIndependentCodePoints container_cicp)
|
||
|
|
: m_container_cicp(container_cicp)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
CodingIndependentCodePoints container_cicp() const { return m_container_cicp; }
|
||
|
|
|
||
|
|
private:
|
||
|
|
CodingIndependentCodePoints m_container_cicp;
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|