Less false positives for MEDIATYPE_VIDEO
authorMarco <maic23@live.de>
Thu, 1 May 2014 20:42:59 +0000 (22:42 +0200)
committerBrian Wolff <bawolff+wn@gmail.com>
Sun, 29 Jun 2014 22:40:56 +0000 (22:40 +0000)
Remove the ffmpeg2theora String to suppress false positives
when doing type detection on ogg files

(Importing pull 23 from github)

Bug: 63584
Change-Id: Ib39ed06f895624b55d15a001cb0a2cd3129f4bb0

includes/MimeMagic.php

index 3448c6a..f68e109 100644 (file)
@@ -979,7 +979,7 @@ class MimeMagic {
                        $head = fread( $f, 256 );
                        fclose( $f );
 
-                       $head = strtolower( $head );
+                       $head = str_replace( 'ffmpeg2theora', '', strtolower( $head ) );
 
                        // This is an UGLY HACK, file should be parsed correctly
                        if ( strpos( $head, 'theora' ) !== false ) {