Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asterisk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Voice
asterisk
Commits
3f6e3221
Commit
3f6e3221
authored
7 years ago
by
Jenkins2
Committed by
Gerrit Code Review
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge "bridge_simple: Improve renegotiation success rate."
parents
027ad49b
7d51a79b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bridges/bridge_simple.c
+54
-2
54 additions, 2 deletions
bridges/bridge_simple.c
with
54 additions
and
2 deletions
bridges/bridge_simple.c
+
54
−
2
View file @
3f6e3221
...
...
@@ -113,6 +113,58 @@ static struct ast_bridge_technology simple_bridge = {
.
stream_topology_changed
=
simple_bridge_stream_topology_changed
,
};
static
void
simple_bridge_request_stream_topology_change
(
struct
ast_channel
*
chan
,
struct
ast_stream_topology
*
requested_topology
)
{
struct
ast_stream_topology
*
existing_topology
=
ast_channel_get_stream_topology
(
chan
);
struct
ast_stream
*
stream
;
struct
ast_format_cap
*
audio_formats
=
NULL
;
struct
ast_stream_topology
*
new_topology
;
int
i
;
/* We find an existing stream with negotiated audio formats that we can place into
* any audio streams in the new topology to ensure that negotiation succeeds. Some
* endpoints incorrectly terminate the call if SDP negotiation fails.
*/
for
(
i
=
0
;
i
<
ast_stream_topology_get_count
(
existing_topology
);
++
i
)
{
stream
=
ast_stream_topology_get_stream
(
existing_topology
,
i
);
if
(
ast_stream_get_type
(
stream
)
!=
AST_MEDIA_TYPE_AUDIO
||
ast_stream_get_state
(
stream
)
==
AST_STREAM_STATE_REMOVED
)
{
continue
;
}
audio_formats
=
ast_stream_get_formats
(
stream
);
break
;
}
if
(
!
audio_formats
)
{
ast_channel_request_stream_topology_change
(
chan
,
requested_topology
,
&
simple_bridge
);
return
;
}
new_topology
=
ast_stream_topology_clone
(
requested_topology
);
if
(
!
new_topology
)
{
ast_channel_request_stream_topology_change
(
chan
,
requested_topology
,
&
simple_bridge
);
return
;
}
for
(
i
=
0
;
i
<
ast_stream_topology_get_count
(
new_topology
);
++
i
)
{
stream
=
ast_stream_topology_get_stream
(
new_topology
,
i
);
if
(
ast_stream_get_type
(
stream
)
!=
AST_MEDIA_TYPE_AUDIO
||
ast_stream_get_state
(
stream
)
==
AST_STREAM_STATE_REMOVED
)
{
continue
;
}
ast_format_cap_append_from_cap
(
ast_stream_get_formats
(
stream
),
audio_formats
,
AST_MEDIA_TYPE_AUDIO
);
}
ast_channel_request_stream_topology_change
(
chan
,
new_topology
,
&
simple_bridge
);
ast_stream_topology_free
(
new_topology
);
}
static
void
simple_bridge_stream_topology_changed
(
struct
ast_bridge
*
bridge
,
struct
ast_bridge_channel
*
bridge_channel
)
{
...
...
@@ -135,9 +187,9 @@ static void simple_bridge_stream_topology_changed(struct ast_bridge *bridge,
/* Align topologies according to size or first channel to join */
if
(
ast_stream_topology_get_count
(
t0
)
<
ast_stream_topology_get_count
(
t1
))
{
ast_channel
_request_stream_topology_change
(
c0
,
t1
,
&
simple_bridge
);
simple_bridge
_request_stream_topology_change
(
c0
,
t1
);
}
else
{
ast_channel
_request_stream_topology_change
(
c1
,
t0
,
&
simple_bridge
);
simple_bridge
_request_stream_topology_change
(
c1
,
t0
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment