AIFF mimetype: fix sniffing rule.

AIFF files follow EA IFF spec and start with a FORM chunk. They never
start with AIFF or AIFC directly.

See for example:
http://www.onicos.com/staff/iz/formats/aiff.html
http://paulbourke.net/dataformats/audio/
This commit is contained in:
Adrien Destugues 2014-10-22 15:50:10 +02:00
parent 72d4735712
commit 1560410ff4
1 changed files with 1 additions and 1 deletions

View File

@ -12,4 +12,4 @@ resource(3, "META:EXTENS") message(234) {
"type" = "audio/x-aiff"
};
resource(5, "META:SNIFF_RULE") "0.50 (\"AIFF\" | \"AIFC\")";
resource(5, "META:SNIFF_RULE") "0.50 (\"FORM\") [8](\"AIFF\" | \"AIFC\") ";