From 6d5ef54c069a3ceb3727537600c86d23a565bdec Mon Sep 17 00:00:00 2001 From: Justin Maggard Date: Wed, 25 Mar 2009 08:05:23 +0000 Subject: [PATCH] * Add .m2t as a valid video file extension. --- scanner.c | 1 + 1 file changed, 1 insertion(+) diff --git a/scanner.c b/scanner.c index e31c9a3..e0a3bfd 100644 --- a/scanner.c +++ b/scanner.c @@ -49,6 +49,7 @@ is_video(const char * file) ends_with(file, ".asf") || ends_with(file, ".wmv") || ends_with(file, ".mp4") || ends_with(file, ".m4v") || ends_with(file, ".mts") || ends_with(file, ".m2ts") || + ends_with(file, ".m2t") || ends_with(file, ".vob") || ends_with(file, ".ts") || ends_with(file, ".avi") || ends_with(file, ".xvid")); }