MT#61856 main: remove some trailing spaces

Just some trailing spaces.

Change-Id: Ib99593511a47bd40b576f1e21c488280c556dbbe
pull/2139/head
Donat Zenichev 3 months ago
parent 9e1f4c142c
commit 27b968cde5

@ -1374,7 +1374,7 @@ static void options(int *argc, char ***argv, charp_ht templates) {
if (rtpe_config.jb_length < 0)
die("Invalid negative jitter buffer size");
// Validate adaptive jitter buffer parameters
if (rtpe_config.jb_adaptive) {
if (rtpe_config.jb_adaptive_min < 0)
@ -1386,12 +1386,12 @@ static void options(int *argc, char ***argv, charp_ht templates) {
if (rtpe_config.jb_adaptive_min > rtpe_config.jb_adaptive_max)
die("--jb-adaptive-min (%d) must be <= --jb-adaptive-max (%d)",
rtpe_config.jb_adaptive_min, rtpe_config.jb_adaptive_max);
// Set reasonable defaults if not specified
if (rtpe_config.jb_adaptive_max == 0)
rtpe_config.jb_adaptive_max = 300; // Default max: 300ms
ilog(LOG_INFO, "Adaptive jitter buffer enabled: min=%dms, max=%dms",
ilog(LOG_INFO, "Adaptive jitter buffer enabled: min=%dms, max=%dms",
rtpe_config.jb_adaptive_min, rtpe_config.jb_adaptive_max);
}

Loading…
Cancel
Save