Bug 1373144: turn multiple msid's error into warning. r=bwc

MozReview-Commit-ID: 5jxHFAsbvRf

--HG--
extra : rebase_source : 5ac29c3dc12f4b8f24846a9d50cccaf2df66bb7c
This commit is contained in:
Nils Ohlmeier [:drno] 2017-06-14 22:25:36 -07:00
parent f6cddda6c5
commit 4252852455

View File

@ -490,10 +490,9 @@ SdpHelper::GetIdsFromMsid(const Sdp& sdp,
*trackId = i->appdata;
found = true;
} else if ((*streamId != i->identifier) || (*trackId != i->appdata)) {
SDP_SET_ERROR("Found multiple different webrtc msids in m-section "
<< msection.GetLevel() << ". The behavior here is "
"undefined.");
return NS_ERROR_INVALID_ARG;
MOZ_MTLOG(ML_WARNING, "Found multiple different webrtc msids in "
"m-section " << msection.GetLevel() << ". The "
"behavior w/o transceivers is undefined.");
}
}
}