From 1560410ff46d7332eead358b3db82942a97c757d Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Wed, 22 Oct 2014 15:50:10 +0200 Subject: [PATCH] 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/ --- src/data/mime_db/audio/x-aiff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/mime_db/audio/x-aiff b/src/data/mime_db/audio/x-aiff index 2063383d53..41e1f302cd 100644 --- a/src/data/mime_db/audio/x-aiff +++ b/src/data/mime_db/audio/x-aiff @@ -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\") ";