зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1183518. Part 3 - early bailout from MediaDecoder::NotifyBytesConsumed when shutting down. r=jya.
This commit is contained in:
Родитель
2a7a82a4ed
Коммит
9abbdbd8e5
|
@ -976,12 +976,12 @@ void MediaDecoder::NotifyPrincipalChanged()
|
|||
void MediaDecoder::NotifyBytesConsumed(int64_t aBytes, int64_t aOffset)
|
||||
{
|
||||
MOZ_ASSERT(NS_IsMainThread());
|
||||
MOZ_ASSERT(mDecoderStateMachine);
|
||||
|
||||
if (mShuttingDown || mIgnoreProgressData) {
|
||||
return;
|
||||
}
|
||||
|
||||
MOZ_ASSERT(mDecoderStateMachine);
|
||||
ReentrantMonitorAutoEnter mon(GetReentrantMonitor());
|
||||
if (aOffset >= mDecoderPosition) {
|
||||
mPlaybackStatistics->AddBytes(aBytes);
|
||||
|
|
Загрузка…
Ссылка в новой задаче