summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2014-05-19 01:10:23 +0000
committerMatthew Jordan <mjordan@digium.com>2014-05-19 01:10:23 +0000
commit42a1dee02d124635d570d834dd8ba32b99612964 (patch)
treea1ba581ccac58a7257063c480b64686dca2c66be /bridges
parent17ff4d92823264e0db1902747d0b1ffcf5a7c26e (diff)
Undo r414123
The Test Suite caught a few problems, undoing until those are resolved git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@414138 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'bridges')
-rw-r--r--bridges/bridge_native_rtp.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/bridges/bridge_native_rtp.c b/bridges/bridge_native_rtp.c
index aa5299c24..7e48ab92f 100644
--- a/bridges/bridge_native_rtp.c
+++ b/bridges/bridge_native_rtp.c
@@ -230,10 +230,8 @@ static void native_rtp_bridge_stop(struct ast_bridge *bridge, struct ast_channel
break;
case AST_RTP_GLUE_RESULT_REMOTE:
if (!target) {
- if (ast_channel_is_leaving_bridge(c0->chan)) {
- glue0->update_peer(c0->chan, NULL, NULL, NULL, NULL, 0);
- }
- if (glue1 && ast_channel_is_leaving_bridge(c1->chan)) {
+ glue0->update_peer(c0->chan, NULL, NULL, NULL, NULL, 0);
+ if (glue1) {
glue1->update_peer(c1->chan, NULL, NULL, NULL, NULL, 0);
}
} else {
@@ -487,9 +485,8 @@ static void native_rtp_bridge_leave(struct ast_bridge *bridge, struct ast_bridge
}
/* Direct RTP may have occurred, tear it down */
- if (ast_channel_is_leaving_bridge(bridge_channel->chan)) {
- glue->update_peer(bridge_channel->chan, NULL, NULL, NULL, NULL, 0);
- }
+ glue->update_peer(bridge_channel->chan, NULL, NULL, NULL, NULL, 0);
+
native_rtp_bridge_stop(bridge, NULL);
}