mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1049235 - [MADAI][Multimedia] Some RTSP link does not operate seek function. r=sworkman
This commit is contained in:
parent
d0ab56a9e8
commit
ef3a013663
@ -331,7 +331,13 @@ bool ASessionDescription::parseNTPRange(
|
||||
|
||||
*npt2 = strtof(s, &end);
|
||||
|
||||
if (end == s || *end != '\0') {
|
||||
if (end == s) {
|
||||
// No end time available. It means to play until the end of the clip.
|
||||
return true;
|
||||
}
|
||||
|
||||
if (*end != '\0') {
|
||||
// Malformed format in NTP description.
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user