From 99174b50b768b2c2324ea3a8136b12fbdff58bc7 Mon Sep 17 00:00:00 2001 From: Justin Maggard Date: Tue, 29 Sep 2009 19:21:04 +0000 Subject: [PATCH] * Check .mov files for video content when scanning. --- utils.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/utils.c b/utils.c index b0afc3e..254f87b 100644 --- a/utils.c +++ b/utils.c @@ -181,10 +181,11 @@ is_video(const char * file) ends_with(file, ".mts") || ends_with(file, ".m2ts") || ends_with(file, ".m2t") || ends_with(file, ".mkv") || ends_with(file, ".vob") || ends_with(file, ".ts") || - #ifdef TIVO_SUPPORT + ends_with(file, ".flv") || ends_with(file, ".xvid") || +#ifdef TIVO_SUPPORT ends_with(file, ".TiVo") || - #endif - ends_with(file, ".flv") || ends_with(file, ".xvid")); +#endif + ends_with(file, ".mov")); } int