Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
8d45f23d
Commit
8d45f23d
authored
Feb 04, 2015
by
jehan
Browse files
fix regression in offer/answer due to multicast
parent
a08aacea
Changes
1
Hide whitespace changes
Inline
Side-by-side
coreapi/offeranswer.c
View file @
8d45f23d
...
...
@@ -400,8 +400,8 @@ static void initiate_incoming(const SalStreamDescription *local_cap,
result
->
payloads
=
match_payloads
(
local_cap
->
payloads
,
remote_offer
->
payloads
,
FALSE
,
one_matching_codec
);
result
->
proto
=
remote_offer
->
proto
;
result
->
type
=
local_cap
->
type
;
if
(
!
result
->
payloads
||
only_telephone_event
(
result
->
payloads
)
||
remote_offer
->
rtp_port
==
0
||
remote_offer
->
rtp_port
==
SalStreamSendOnly
){
result
->
dir
=
compute_dir_incoming
(
local_cap
->
dir
,
remote_offer
->
dir
);
result
->
dir
=
compute_dir_incoming
(
local_cap
->
dir
,
remote_offer
->
dir
);
if
(
!
result
->
payloads
||
only_telephone_event
(
result
->
payloads
)
||
remote_offer
->
rtp_port
==
0
||
remote_offer
->
dir
==
SalStreamRecvOnly
){
result
->
rtp_port
=
0
;
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment