Bug 1065827 - Start MediaDecoder playback state in LOADING. r=cpearce

This commit is contained in:
Jean-Yves Avenard 2014-10-28 20:10:08 +11:00
parent 38b39635bc
commit 571d088f61

View File

@ -437,7 +437,7 @@ MediaDecoder::MediaDecoder() :
mReentrantMonitor("media.decoder"), mReentrantMonitor("media.decoder"),
mIsDormant(false), mIsDormant(false),
mIsExitingDormant(false), mIsExitingDormant(false),
mPlayState(PLAY_STATE_PAUSED), mPlayState(PLAY_STATE_LOADING),
mNextState(PLAY_STATE_PAUSED), mNextState(PLAY_STATE_PAUSED),
mIgnoreProgressData(false), mIgnoreProgressData(false),
mInfiniteStream(false), mInfiniteStream(false),
@ -562,8 +562,6 @@ nsresult MediaDecoder::InitializeStateMachine(MediaDecoder* aCloneDonor)
// set them now // set them now
SetStateMachineParameters(); SetStateMachineParameters();
ChangeState(PLAY_STATE_LOADING);
return ScheduleStateMachineThread(); return ScheduleStateMachineThread();
} }