From 7a449b6819e8a0cdb63f7b587591d56573464fae Mon Sep 17 00:00:00 2001
From: Matt Jordan <mjordan@digium.com>
Date: Fri, 4 Nov 2016 15:40:58 -0500
Subject: [PATCH] res_stasis: Set a video source mode on Stasis created bridges

When a bridge is created via ARI (through res_stasis), no video source
mode is set by default. As a result, any endpoint sending video media
won't ever see any video reflected back to it.

This patch defaults a bridge to a 'follow the talker' video mode.
Further work can be done to add routes that allow for the video mode to
be controlled through the /bridges resource.

Change-Id: I7e9d530a5d7a97a4524a9ee4e468e1a6b3443866
---
 res/res_stasis.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/res/res_stasis.c b/res/res_stasis.c
index f3d940e2db..54f65150e9 100644
--- a/res/res_stasis.c
+++ b/res/res_stasis.c
@@ -800,6 +800,7 @@ static struct ast_bridge *bridge_create_common(const char *type, const char *nam
 
 	bridge = bridge_stasis_new(capabilities, flags, name, id);
 	if (bridge) {
+		ast_bridge_set_talker_src_video_mode(bridge);
 		if (!ao2_link(app_bridges, bridge)) {
 			ast_bridge_destroy(bridge, 0);
 			bridge = NULL;
-- 
GitLab