/* * Copyright (c) 2022-2026, Gregory Bertilson * * SPDX-License-Identifier: BSD-2-Clause */ #include #include "VideoFrame.h" namespace Media { VideoFrame::VideoFrame( AK::Duration timestamp, AK::Duration duration, Gfx::Size size, u8 bit_depth, Gfx::ColorSpace color_space, NonnullOwnPtr yuv_data) : m_timestamp(timestamp) , m_duration(duration) , m_size(size) , m_bit_depth(bit_depth) , m_color_space(move(color_space)) , m_yuv_data(move(yuv_data)) { } VideoFrame::~VideoFrame() = default; }