obs-outputs: Shorten dynamic bitrate increment timeout

The dynamic increment timeout does not need to be 30 seconds. Change it
to 4 seconds instead to make dynamic bitrate something that people
actually want to use.
This commit is contained in:
Jim
2022-11-15 09:29:46 -08:00
parent 19fbc886fa
commit 301730f40c
+1 -1
View File
@@ -33,7 +33,7 @@
#endif
/* dynamic bitrate coefficients */
#define DBR_INC_TIMER (30ULL * SEC_TO_NSEC)
#define DBR_INC_TIMER (4ULL * SEC_TO_NSEC)
#define DBR_TRIGGER_USEC (200ULL * MSEC_TO_USEC)
#define MIN_ESTIMATE_DURATION_MS 1000
#define MAX_ESTIMATE_DURATION_MS 2000