Higher bitrate uploads

Added toggle to increase the bitrate for uploads to comma connect
This commit is contained in:
FrogAi
2024-02-27 16:34:47 -07:00
parent 7437d97c2e
commit 7ef99716cc
4 changed files with 5 additions and 3 deletions

View File

@@ -14,7 +14,7 @@
#include "system/loggerd/logger.h"
constexpr int MAIN_FPS = 20;
const int MAIN_BITRATE = 1e7;
const int MAIN_BITRATE = Params().getBool("HigherBitrate") ? 20000000 : 1e7;
const int LIVESTREAM_BITRATE = 1e6;
const int QCAM_BITRATE = 256000;