mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 19:18:06 +00:00
move jitter_buffer_max_size default value from 250 to 500
This commit is contained in:
parent
d176353903
commit
ea37289b7d
1 changed files with 1 additions and 1 deletions
|
|
@ -2655,7 +2655,7 @@ static void apply_jitter_buffer_params(LinphoneCore *lc, RtpSession *session, Li
|
|||
|
||||
rtp_session_get_jitter_buffer_params(session, ¶ms);
|
||||
params.min_size = lp_config_get_int(lc->config, "rtp", "jitter_buffer_min_size", 40);
|
||||
params.max_size = lp_config_get_int(lc->config, "rtp", "jitter_buffer_max_size", 250);
|
||||
params.max_size = lp_config_get_int(lc->config, "rtp", "jitter_buffer_max_size", 500);
|
||||
params.max_packets = params.max_size * 200 / 1000; /*allow 200 packet per seconds, quite large*/
|
||||
params.buffer_algorithm = name_to_jb_algo(lp_config_get_string(lc->config, "rtp", "jitter_buffer_algorithm", "rls"));
|
||||
params.refresh_ms = lp_config_get_int(lc->config, "rtp", "jitter_buffer_refresh_period", 5000);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue