From 5743ebbac50d7988c78d3ca22d7c010e52a37e7a Mon Sep 17 00:00:00 2001 From: gitchomik Date: Mon, 9 Mar 2015 12:10:55 +0100 Subject: [PATCH 1/2] .mod Camcorder Recorded Video File http://en.wikipedia.org/wiki/MOD_and_TOD --- utils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/utils.c b/utils.c index de3d509..b7e3297 100644 --- a/utils.c +++ b/utils.c @@ -320,6 +320,7 @@ is_video(const char * file) ends_with(file, ".m2t") || ends_with(file, ".mkv") || ends_with(file, ".vob") || ends_with(file, ".ts") || ends_with(file, ".flv") || ends_with(file, ".xvid") || + ends_with(file, ".mod") || #ifdef TIVO_SUPPORT ends_with(file, ".TiVo") || #endif From 8b1e780912bb400b99c6752379d729516f9a4297 Mon Sep 17 00:00:00 2001 From: gitchomik Date: Tue, 10 Mar 2015 13:48:50 +0100 Subject: [PATCH 2/2] added support for .tod files (Camcorder Recorded Video File) More info http://en.wikipedia.org/wiki/MOD_and_TOD --- utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.c b/utils.c index b7e3297..4327c73 100644 --- a/utils.c +++ b/utils.c @@ -320,7 +320,7 @@ is_video(const char * file) ends_with(file, ".m2t") || ends_with(file, ".mkv") || ends_with(file, ".vob") || ends_with(file, ".ts") || ends_with(file, ".flv") || ends_with(file, ".xvid") || - ends_with(file, ".mod") || + ends_with(file, ".mod") || ends_with(file, ".tod") || #ifdef TIVO_SUPPORT ends_with(file, ".TiVo") || #endif