Bug 1049235 - [MADAI][Multimedia] Some RTSP link does not operate seek function. r=sworkman

This commit is contained in:
Ethan Tseng 2014-08-08 16:48:02 +08:00
parent d0ab56a9e8
commit ef3a013663

View File

@ -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;
}