Video format
Some checks failed
CI / Native Windows Build And Tests (push) Failing after 7s
CI / React UI Build (push) Has been cancelled
CI / Windows Release Package (push) Has been cancelled

This commit is contained in:
2026-05-03 11:59:00 +10:00
parent ea9f608f55
commit 44ed901e9a
6 changed files with 140 additions and 5 deletions

View File

@@ -49,6 +49,8 @@ public:
unsigned short GetServerPort() const { return mServerPort; }
unsigned GetMaxTemporalHistoryFrames() const { return mConfig.maxTemporalHistoryFrames; }
bool ExternalKeyingEnabled() const { return mConfig.enableExternalKeying; }
const std::string& GetVideoFormat() const { return mConfig.videoFormat; }
const std::string& GetFrameRate() const { return mConfig.frameRate; }
void SetServerPort(unsigned short port);
bool AutoReloadEnabled() const { return mAutoReloadEnabled; }
@@ -60,6 +62,8 @@ private:
bool autoReload = true;
unsigned maxTemporalHistoryFrames = 4;
bool enableExternalKeying = false;
std::string videoFormat = "1080p";
std::string frameRate = "59.94";
};
struct DeckLinkOutputStatus