зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1258562: MSE] Abort if MediaSource has been shutdown. r=gerald
The assumption was made that this code was never called if MediaSourceDecoder::NextFrameBufferedStatus() had been called before. However, that assumption was incorrect as NextFrameBufferedStatus() is only called if we had determine we had no frame buffered. MozReview-Commit-ID: 1hsEJuInION --HG-- extra : rebase_source : f760ef8df01858c24887ba024c6b350332d2e4dc
This commit is contained in:
Родитель
79ad6e2449
Коммит
e4b81849b8
|
@ -277,6 +277,11 @@ bool
|
|||
MediaSourceDecoder::CanPlayThrough()
|
||||
{
|
||||
MOZ_ASSERT(NS_IsMainThread());
|
||||
|
||||
if (NextFrameBufferedStatus() == MediaDecoderOwner::NEXT_FRAME_UNAVAILABLE) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (IsNaN(mMediaSource->Duration())) {
|
||||
// Don't have any data yet.
|
||||
return false;
|
||||
|
|
Загрузка…
Ссылка в новой задаче