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
+15
View File
@@ -0,0 +1,15 @@
#pragma once
#include "AppConfig.hpp"
#include "IVideoFeed.hpp"
#include <cstdint>
#include <memory>
std::unique_ptr<IVideoFeed> createFeed(
const FeedConfig& config,
uint32_t feedIndex,
uint32_t frameWidth,
uint32_t frameHeight,
bool verbose);