<p>Josh Soref has uploaded this change for <strong>review</strong>.</p><p><a href="https://gerrit.asterisk.org/c/asterisk/+/16774">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">spelling: bridge<br><br>Change-Id: I1ca45b6345edd40ea99e3e3d401508520a010195<br>---<br>M apps/app_confbridge.c<br>M include/asterisk/bridge.h<br>M main/bridge.c<br>3 files changed, 9 insertions(+), 9 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/74/16774/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git a/apps/app_confbridge.c b/apps/app_confbridge.c</span><br><span>index 9549d4c..fa58a77 100644</span><br><span>--- a/apps/app_confbridge.c</span><br><span>+++ b/apps/app_confbridge.c</span><br><span>@@ -1751,19 +1751,19 @@</span><br><span>                    ast_bridge_set_video_update_discard(conference->bridge, conference->b_profile.video_update_discard);</span><br><span>                   ast_bridge_set_remb_send_interval(conference->bridge, conference->b_profile.remb_send_interval);</span><br><span>                       if (ast_test_flag(&conference->b_profile, BRIDGE_OPT_REMB_BEHAVIOR_AVERAGE)) {</span><br><span style="color: hsl(0, 100%, 40%);">-                           ast_brige_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_AVERAGE);</span><br><span style="color: hsl(120, 100%, 40%);">+                                ast_bridge_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_AVERAGE);</span><br><span>                      } else if (ast_test_flag(&conference->b_profile, BRIDGE_OPT_REMB_BEHAVIOR_LOWEST)) {</span><br><span style="color: hsl(0, 100%, 40%);">-                             ast_brige_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_LOWEST);</span><br><span style="color: hsl(120, 100%, 40%);">+                         ast_bridge_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_LOWEST);</span><br><span>                       } else if (ast_test_flag(&conference->b_profile, BRIDGE_OPT_REMB_BEHAVIOR_HIGHEST)) {</span><br><span style="color: hsl(0, 100%, 40%);">-                            ast_brige_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_HIGHEST);</span><br><span style="color: hsl(120, 100%, 40%);">+                                ast_bridge_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_HIGHEST);</span><br><span>                      } else if (ast_test_flag(&conference->b_profile, BRIDGE_OPT_REMB_BEHAVIOR_AVERAGE_ALL)) {</span><br><span style="color: hsl(0, 100%, 40%);">-                                ast_brige_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_AVERAGE_ALL);</span><br><span style="color: hsl(120, 100%, 40%);">+                            ast_bridge_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_AVERAGE_ALL);</span><br><span>                  } else if (ast_test_flag(&conference->b_profile, BRIDGE_OPT_REMB_BEHAVIOR_LOWEST_ALL)) {</span><br><span style="color: hsl(0, 100%, 40%);">-                         ast_brige_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_LOWEST_ALL);</span><br><span style="color: hsl(120, 100%, 40%);">+                             ast_bridge_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_LOWEST_ALL);</span><br><span>                   } else if (ast_test_flag(&conference->b_profile, BRIDGE_OPT_REMB_BEHAVIOR_HIGHEST_ALL)) {</span><br><span style="color: hsl(0, 100%, 40%);">-                                ast_brige_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_HIGHEST_ALL);</span><br><span style="color: hsl(120, 100%, 40%);">+                            ast_bridge_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_HIGHEST_ALL);</span><br><span>                  } else if (ast_test_flag(&conference->b_profile, BRIDGE_OPT_REMB_BEHAVIOR_FORCE)) {</span><br><span style="color: hsl(0, 100%, 40%);">-                              ast_brige_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_FORCE);</span><br><span style="color: hsl(120, 100%, 40%);">+                          ast_bridge_set_remb_behavior(conference->bridge, AST_BRIDGE_VIDEO_SFU_REMB_FORCE);</span><br><span>                                ast_bridge_set_remb_estimated_bitrate(conference->bridge, conference->b_profile.remb_estimated_bitrate);</span><br><span>                       }</span><br><span>            }</span><br><span>diff --git a/include/asterisk/bridge.h b/include/asterisk/bridge.h</span><br><span>index 729e81a..5f5b250 100644</span><br><span>--- a/include/asterisk/bridge.h</span><br><span>+++ b/include/asterisk/bridge.h</span><br><span>@@ -1041,7 +1041,7 @@</span><br><span>  *</span><br><span>  * \note This can only be called when the bridge has been set to the SFU video mode.</span><br><span>  */</span><br><span style="color: hsl(0, 100%, 40%);">-void ast_brige_set_remb_behavior(struct ast_bridge *bridge, enum ast_bridge_video_sfu_remb_behavior behavior);</span><br><span style="color: hsl(120, 100%, 40%);">+void ast_bridge_set_remb_behavior(struct ast_bridge *bridge, enum ast_bridge_video_sfu_remb_behavior behavior);</span><br><span> </span><br><span> /*!</span><br><span>  * \brief Force the REMB report estimated bitrate to a specific max value</span><br><span>diff --git a/main/bridge.c b/main/bridge.c</span><br><span>index 0538008..af3ea6d 100644</span><br><span>--- a/main/bridge.c</span><br><span>+++ b/main/bridge.c</span><br><span>@@ -3862,7 +3862,7 @@</span><br><span>      ast_bridge_unlock(bridge);</span><br><span> }</span><br><span> </span><br><span style="color: hsl(0, 100%, 40%);">-void ast_brige_set_remb_behavior(struct ast_bridge *bridge, enum ast_bridge_video_sfu_remb_behavior behavior)</span><br><span style="color: hsl(120, 100%, 40%);">+void ast_bridge_set_remb_behavior(struct ast_bridge *bridge, enum ast_bridge_video_sfu_remb_behavior behavior)</span><br><span> {</span><br><span>        ast_assert(bridge->softmix.video_mode.mode == AST_BRIDGE_VIDEO_MODE_SFU);</span><br><span> </span><br><span></span><br></pre><p>To view, visit <a href="https://gerrit.asterisk.org/c/asterisk/+/16774">change 16774</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.asterisk.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.asterisk.org/c/asterisk/+/16774"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: asterisk </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-Change-Id: I1ca45b6345edd40ea99e3e3d401508520a010195 </div>
<div style="display:none"> Gerrit-Change-Number: 16774 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: Josh Soref <jsoref@gmail.com> </div>
<div style="display:none"> Gerrit-CC: Friendly Automation </div>
<div style="display:none"> Gerrit-MessageType: newchange </div>