Bug 1267887 - Document MP4AudioInfo::IsValid(). r=jya

Jean-Yves and I both found this logic confusing.

MozReview-Commit-ID: C5phemRPDQZ
This commit is contained in:
Ralph Giles 2016-05-11 17:18:07 -07:00
Родитель 64dfe2c489
Коммит c0393ce78f
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -156,6 +156,7 @@ bool
MP4AudioInfo::IsValid() const
{
return mChannels > 0 && mRate > 0 &&
// Accept any mime type here, but if it's aac, validate the profile.
(!mMimeType.Equals(MEDIA_MIMETYPE_AUDIO_AAC) ||
mProfile > 0 || mExtendedProfile > 0);
}