faliure
Some checks failed
CI / React UI Build (push) Successful in 10s
CI / Native Windows Build And Tests (push) Failing after 2m52s
CI / Windows Release Package (push) Has been skipped

This commit is contained in:
Aiden
2026-05-12 00:35:01 +10:00
parent 9e3412712c
commit bf23cd880a
5 changed files with 350 additions and 12 deletions

View File

@@ -11,11 +11,11 @@ enum class VideoUnderrunBehavior
struct VideoPlayoutPolicy
{
unsigned outputFramePoolSize = 10;
unsigned targetPrerollFrames = 12;
unsigned targetPrerollFrames = 4;
unsigned targetReadyFrames = 2;
unsigned maxReadyFrames = 4;
unsigned minimumSpareDeviceFrames = 1;
uint64_t lateOrDropCatchUpFrames = 2;
uint64_t lateOrDropCatchUpFrames = 0;
VideoUnderrunBehavior underrunBehavior = VideoUnderrunBehavior::ReuseLastCompletedFrame;
bool adaptiveHeadroomEnabled = false;
};