Bug 1147226 - Ensure media.eme.mse-only is honoured in HTMLMediaElement::MetadataLoaded(). r=edwin

This commit is contained in:
Chris Pearce 2015-03-25 15:00:26 +13:00
Родитель 7ffeda127c
Коммит c3edca1d79
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -3084,7 +3084,7 @@ void HTMLMediaElement::MetadataLoaded(const MediaInfo* aInfo,
mDecoder->SetFragmentEndTime(mFragmentEnd);
}
if (mIsEncrypted) {
if (!mMediaSource) {
if (!mMediaSource && Preferences::GetBool("media.eme.mse-only", true)) {
DecodeError();
return;
}