V2 working
This commit is contained in:
18
apps/RenderCadenceCompositor/app/AppConfig.cpp
Normal file
18
apps/RenderCadenceCompositor/app/AppConfig.cpp
Normal file
@@ -0,0 +1,18 @@
|
||||
#include "AppConfig.h"
|
||||
|
||||
namespace RenderCadenceCompositor
|
||||
{
|
||||
AppConfig DefaultAppConfig()
|
||||
{
|
||||
AppConfig config;
|
||||
config.deckLink.externalKeyingEnabled = false;
|
||||
config.deckLink.outputAlphaRequired = false;
|
||||
config.outputThread.targetBufferedFrames = 4;
|
||||
config.telemetry.interval = std::chrono::seconds(1);
|
||||
config.warmupCompletedFrames = 4;
|
||||
config.warmupTimeout = std::chrono::seconds(3);
|
||||
config.prerollTimeout = std::chrono::seconds(3);
|
||||
config.prerollPoll = std::chrono::milliseconds(2);
|
||||
return config;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user