Files
mxl-multiviewer/VideoFrame.hpp
T
2026-05-18 00:03:06 +03:00

12 lines
158 B
C++

#pragma once
#include <cstdint>
#include <vector>
struct VideoFrame
{
uint32_t width = 0;
uint32_t height = 0;
std::vector<uint32_t> pixels;
};