From 3602523cefdeb2a46d77946f7f2cc7fc21bd5a4f Mon Sep 17 00:00:00 2001 From: ZwX1616 Date: Tue, 5 Aug 2025 15:02:29 -0700 Subject: [PATCH] Update system/loggerd/loggerd.h Co-authored-by: Shane Smiskol --- system/loggerd/loggerd.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/system/loggerd/loggerd.h b/system/loggerd/loggerd.h index 7e97fcde87..c428e3de0f 100644 --- a/system/loggerd/loggerd.h +++ b/system/loggerd/loggerd.h @@ -17,7 +17,8 @@ const int LIVESTREAM_BITRATE = 1e6; const int QCAM_BITRATE = 256000; inline std::pair get_hevc_bitrate_gop(int in_width) { - return (in_width <= 1344) ? std::make_pair(5'000'000, 20) : std::make_pair(10'000'000, 30);} + return (in_width <= 1344) ? std::make_pair(5'000'000, 20) : std::make_pair(10'000'000, 30); +} #define NO_CAMERA_PATIENCE 500 // fall back to time-based rotation if all cameras are dead