From 52d9bcf3d686a37267bfde9a6636969606671fd5 Mon Sep 17 00:00:00 2001 From: Jean-Yves Avenard Date: Tue, 2 Feb 2016 11:38:49 +1100 Subject: [PATCH] Bug 1244523: P1. Allow video/quicktime mimetype. r=cpearce It's just like video/mp4 --- dom/media/fmp4/MP4Decoder.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/dom/media/fmp4/MP4Decoder.cpp b/dom/media/fmp4/MP4Decoder.cpp index 6e3846932f1f..2e41f4fff81b 100644 --- a/dom/media/fmp4/MP4Decoder.cpp +++ b/dom/media/fmp4/MP4Decoder.cpp @@ -107,6 +107,7 @@ MP4Decoder::CanHandleMediaType(const nsACString& aMIMETypeExcludingCodecs, aMIMETypeExcludingCodecs.EqualsASCII(VIDEO_3GPP) || #endif aMIMETypeExcludingCodecs.EqualsASCII("video/mp4") || + aMIMETypeExcludingCodecs.EqualsASCII("video/quicktime") || aMIMETypeExcludingCodecs.EqualsASCII("video/x-m4v"); if (!isMP4Audio && !isMP4Video) { return false;