[asterisk-commits] res stasis: Add 'video sfu' as a requested bridge type. (asterisk[15])
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Sep 28 12:36:47 CDT 2017
Jenkins2 has submitted this change and it was merged. ( https://gerrit.asterisk.org/6622 )
Change subject: res_stasis: Add 'video_sfu' as a requested bridge type.
......................................................................
res_stasis: Add 'video_sfu' as a requested bridge type.
This change adds 'video_sfu' as a requested bridge type when
creating a bridge. By specifying this a mixing type bridge is
created that exchanges video in an SFU fashion.
Change-Id: I2ada47cf5f3fc176518b647c0b4aa39d55339606
---
M res/res_stasis.c
M rest-api/api-docs/bridges.json
2 files changed, 20 insertions(+), 3 deletions(-)
Approvals:
Kevin Harwell: Looks good to me, but someone else must approve
Benjamin Keith Ford: Looks good to me, but someone else must approve
Joshua Colp: Looks good to me, approved
Jenkins2: Approved for Submit
diff --git a/res/res_stasis.c b/res/res_stasis.c
index 899c8f7..f99dcee 100644
--- a/res/res_stasis.c
+++ b/res/res_stasis.c
@@ -766,6 +766,7 @@
int flags = AST_BRIDGE_FLAG_MERGE_INHIBIT_FROM | AST_BRIDGE_FLAG_MERGE_INHIBIT_TO
| AST_BRIDGE_FLAG_SWAP_INHIBIT_FROM | AST_BRIDGE_FLAG_SWAP_INHIBIT_TO
| AST_BRIDGE_FLAG_TRANSFER_BRIDGE_ONLY;
+ enum ast_bridge_video_mode_type video_mode = AST_BRIDGE_VIDEO_MODE_TALKER_SRC;
if (invisible) {
flags |= AST_BRIDGE_FLAG_INVISIBLE;
@@ -782,7 +783,15 @@
} else if (!strcmp(requested_type, "dtmf_events") ||
!strcmp(requested_type, "proxy_media")) {
capabilities &= ~AST_BRIDGE_CAPABILITY_NATIVE;
+ } else if (!strcmp(requested_type, "video_sfu")) {
+ video_mode = AST_BRIDGE_VIDEO_MODE_SFU;
}
+ }
+
+ /* For an SFU video bridge we ensure it always remains in multimix for the best experience. */
+ if (video_mode == AST_BRIDGE_VIDEO_MODE_SFU) {
+ capabilities = AST_BRIDGE_CAPABILITY_MULTIMIX;
+ flags &= ~AST_BRIDGE_FLAG_SMART;
}
if (!capabilities
@@ -794,7 +803,15 @@
bridge = bridge_stasis_new(capabilities, flags, name, id);
if (bridge) {
- ast_bridge_set_talker_src_video_mode(bridge);
+ if (video_mode == AST_BRIDGE_VIDEO_MODE_SFU) {
+ ast_bridge_set_sfu_video_mode(bridge);
+ /* We require a minimum 5 seconds between video updates to stop floods from clients,
+ * this should rarely be changed but should become configurable in the future.
+ */
+ ast_bridge_set_video_update_discard(bridge, 5);
+ } else {
+ ast_bridge_set_talker_src_video_mode(bridge);
+ }
if (!ao2_link(app_bridges, bridge)) {
ast_bridge_destroy(bridge, 0);
bridge = NULL;
diff --git a/rest-api/api-docs/bridges.json b/rest-api/api-docs/bridges.json
index 03a1e7a..877fdf8 100644
--- a/rest-api/api-docs/bridges.json
+++ b/rest-api/api-docs/bridges.json
@@ -26,7 +26,7 @@
"parameters": [
{
"name": "type",
- "description": "Comma separated list of bridge type attributes (mixing, holding, dtmf_events, proxy_media).",
+ "description": "Comma separated list of bridge type attributes (mixing, holding, dtmf_events, proxy_media, video_sfu).",
"paramType": "query",
"required": false,
"allowMultiple": false,
@@ -65,7 +65,7 @@
"parameters": [
{
"name": "type",
- "description": "Comma separated list of bridge type attributes (mixing, holding, dtmf_events, proxy_media) to set.",
+ "description": "Comma separated list of bridge type attributes (mixing, holding, dtmf_events, proxy_media, video_sfu) to set.",
"paramType": "query",
"required": false,
"allowMultiple": false,
--
To view, visit https://gerrit.asterisk.org/6622
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: 15
Gerrit-MessageType: merged
Gerrit-Change-Id: I2ada47cf5f3fc176518b647c0b4aa39d55339606
Gerrit-Change-Number: 6622
Gerrit-PatchSet: 1
Gerrit-Owner: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Benjamin Keith Ford <bford at digium.com>
Gerrit-Reviewer: Jenkins2
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Kevin Harwell <kharwell at digium.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-commits/attachments/20170928/82fc39d0/attachment-0001.html>
More information about the asterisk-commits
mailing list