зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1134064: Part3. Don't evict partial data and make resource unplayable. r=k17e
This commit is contained in:
Родитель
bd730cc79a
Коммит
fc5089207f
|
@ -331,7 +331,7 @@ MP4Demuxer::GetEvictionOffset(Microseconds aTime)
|
|||
for (int i = 0; i < mPrivate->mIndexes.Length(); i++) {
|
||||
offset = std::min(offset, mPrivate->mIndexes[i]->GetEvictionOffset(aTime));
|
||||
}
|
||||
return offset == std::numeric_limits<uint64_t>::max() ? -1 : offset;
|
||||
return offset == std::numeric_limits<uint64_t>::max() ? 0 : offset;
|
||||
}
|
||||
|
||||
Microseconds
|
||||
|
|
Загрузка…
Ссылка в новой задаче