16 lines
269 B
C++
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);
|