summaryrefslogtreecommitdiff
path: root/apps/app_confbridge.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2018-04-02 10:53:17 -0300
committerJoshua Colp <jcolp@digium.com>2018-04-03 08:13:11 -0600
commit0f6431e8e4f9678c13f10bc1b45ada932e5f1424 (patch)
tree9e8f37d2f9667327de96fc1da21f91d3a24bcca3 /apps/app_confbridge.c
parentedba638a729e8363a07f373006c250e66f353d82 (diff)
app_confbridge / bridge_softmix: Add ability to configure REMB interval.
This change adds a configuration option to app_confbridge which can be used to set the interval at which we will send a combined REMB (remote estimated maximum bitrate) frame to sources of video. The bridging API has also been extended slightly to allow setting this so bridge_softmix can use it. ASTERISK-27786 Change-Id: I0e49eae60f369c86434414f3cb8278709c793c82
Diffstat (limited to 'apps/app_confbridge.c')
-rw-r--r--apps/app_confbridge.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/app_confbridge.c b/apps/app_confbridge.c
index 4f1108e6b..d8407d857 100644
--- a/apps/app_confbridge.c
+++ b/apps/app_confbridge.c
@@ -1543,6 +1543,7 @@ static struct confbridge_conference *join_conference_bridge(const char *conferen
} else if (ast_test_flag(&conference->b_profile, BRIDGE_OPT_VIDEO_SRC_SFU)) {
ast_bridge_set_sfu_video_mode(conference->bridge);
ast_bridge_set_video_update_discard(conference->bridge, conference->b_profile.video_update_discard);
+ ast_bridge_set_remb_send_interval(conference->bridge, conference->b_profile.remb_send_interval);
}
/* Link it into the conference bridges container */