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

16 lines
269 B
C++

#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);