Bug 1733109 - do not use 'else' after 'return' in MediaDecoder.cpp. r=bryce

Depends on D126928

Differential Revision: https://phabricator.services.mozilla.com/D126929
This commit is contained in:
Paul Adenot 2021-09-30 12:36:12 +00:00
Родитель 9f33d4a4a4
Коммит d444b36c2d
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -579,7 +579,9 @@ void MediaDecoder::Play() {
if (IsEnded()) {
Seek(0, SeekTarget::PrevSyncPoint);
return;
} else if (mPlayState == PLAY_STATE_LOADING) {
}
if (mPlayState == PLAY_STATE_LOADING) {
mNextState = PLAY_STATE_PLAYING;
return;
}