mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1035067: Don't hint we expect a track if we're not going to receive it r=ehugg
This commit is contained in:
parent
0809aa5e48
commit
8a109268e9
@ -5262,7 +5262,10 @@ gsmsdp_negotiate_media_lines (fsm_fcb_t *fcb_p, cc_sdp_t *sdp_p, boolean initial
|
||||
/*
|
||||
* Add track to remote streams in dcb
|
||||
*/
|
||||
if (SDP_MEDIA_APPLICATION != media_type) {
|
||||
if (SDP_MEDIA_APPLICATION != media_type &&
|
||||
/* Do not expect to receive media if we're sendonly! */
|
||||
(media->direction == SDP_DIRECTION_SENDRECV ||
|
||||
media->direction == SDP_DIRECTION_RECVONLY)) {
|
||||
int pc_stream_id = -1;
|
||||
|
||||
/* This is a hack to keep all the media in a single
|
||||
|
Loading…
Reference in New Issue
Block a user