Alow AAC audio codec data in matroska/webm streams.

Allow CRC32 elements in matroska cluster elements.
This commit is contained in:
Jeroen Vreeken 2019-07-18 11:00:46 +02:00 committed by Roy Tam
commit 3dfc953945
4 changed files with 28 additions and 2 deletions

View file

@ -82,6 +82,10 @@ WebMDecoder::CanHandleMediaType(const nsACString& aMIMETypeExcludingCodecs,
continue;
}
if (IsAACCodecString(codec)) {
continue;
}
// Some unsupported codec.
return false;
}