12 lines
158 B
C++
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;
|
|
};
|