Fixed compatibility with broken RTSP implementation of Larix
This commit is contained in:
parent
98b704a764
commit
72bae90ead
1 changed files with 1 additions and 1 deletions
|
@ -369,7 +369,7 @@ namespace SDP{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
getline(words, item, ' ');
|
getline(words, item, ' ');
|
||||||
if (!getline(words, item, ' ') || item != "RTP/AVP"){
|
if (!getline(words, item, ' ') || item.substr(0, 7) != "RTP/AVP"){
|
||||||
WARN_MSG("Media transport not supported: %s", item.c_str());
|
WARN_MSG("Media transport not supported: %s", item.c_str());
|
||||||
myMeta->tracks.erase(trackNo);
|
myMeta->tracks.erase(trackNo);
|
||||||
tracks.erase(trackNo);
|
tracks.erase(trackNo);
|
||||||
|
|
Loading…
Add table
Reference in a new issue