* Add Matroska Video (.mkv) support.

This commit is contained in:
Justin Maggard
2009-03-27 07:39:09 +00:00
parent 7372543da9
commit 9854e35533
2 changed files with 5 additions and 1 deletions

View File

@ -49,7 +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, ".m2t") || ends_with(file, ".mkv") ||
ends_with(file, ".vob") || ends_with(file, ".ts") ||
ends_with(file, ".avi") || ends_with(file, ".xvid"));
}