initial commit

This commit is contained in:
Johanness
2026-05-18 00:03:06 +03:00
commit ea7e73d6a4
183 changed files with 34479 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#pragma once
#include <cstdint>
#include <vector>
struct VideoFrame
{
uint32_t width = 0;
uint32_t height = 0;
std::vector<uint32_t> pixels;
};