From ae111de59ae37c29ccd62e0580f93a4a1de9fd0c Mon Sep 17 00:00:00 2001 From: Tvangeste Date: Sun, 23 Jun 2013 11:57:51 +0200 Subject: [PATCH] Consider *.mp4 files to be video not audio --- filetype.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filetype.cc b/filetype.cc index 18c98c3f..7f88e349 100644 --- a/filetype.cc +++ b/filetype.cc @@ -53,7 +53,6 @@ bool isNameOfSound( string const & name ) endsWith( s, ".voc" ) || endsWith( s, ".ogg" ) || endsWith( s, ".mp3" ) || - endsWith( s, ".mp4" ) || endsWith( s, ".m4a") || endsWith( s, ".aac" ) || endsWith( s, ".flac" ) || @@ -77,6 +76,7 @@ bool isNameOfVideo( string const & name ) endsWith( s, ".ogv" ) || endsWith( s, ".avi" ) || endsWith( s, ".m4v" ) || + endsWith( s, ".mp4" ) || endsWith( s, ".mkv" ) || endsWith( s, ".wmv" ) || endsWith( s, ".sfw" ) ||