config cleanup
This commit is contained in:
@@ -5,8 +5,16 @@ namespace RenderCadenceCompositor
|
||||
AppConfig DefaultAppConfig()
|
||||
{
|
||||
AppConfig config;
|
||||
config.deckLink.externalKeyingEnabled = false;
|
||||
config.deckLink.outputAlphaRequired = false;
|
||||
config.input.backend = "decklink";
|
||||
config.input.device = "default";
|
||||
config.input.resolution = "1080p";
|
||||
config.input.frameRate = "59.94";
|
||||
config.output.backend = "decklink";
|
||||
config.output.device = "default";
|
||||
config.output.resolution = "1080p";
|
||||
config.output.frameRate = "59.94";
|
||||
config.output.externalKeyingEnabled = false;
|
||||
config.output.outputAlphaRequired = false;
|
||||
config.outputThread.targetBufferedFrames = 4;
|
||||
config.telemetry.interval = std::chrono::seconds(1);
|
||||
config.logging.minimumLevel = LogLevel::Log;
|
||||
@@ -22,12 +30,6 @@ AppConfig DefaultAppConfig()
|
||||
config.oscBindAddress = "0.0.0.0";
|
||||
config.oscPort = 9000;
|
||||
config.oscSmoothing = 0.18;
|
||||
config.inputVideoFormat = "1080p";
|
||||
config.inputFrameRate = "59.94";
|
||||
config.outputVideoFormat = "1080p";
|
||||
config.outputFrameRate = "59.94";
|
||||
config.videoInputBackend = "decklink";
|
||||
config.videoOutputBackend = "decklink";
|
||||
config.autoReload = true;
|
||||
config.maxTemporalHistoryFrames = 12;
|
||||
config.previewEnabled = false;
|
||||
|
||||
Reference in New Issue
Block a user