From 991ba533a46e9a1b0e8fcc29fbd2efea60ab1897 Mon Sep 17 00:00:00 2001 From: jtuley Date: Sat, 6 Feb 2010 14:20:37 -0600 Subject: [PATCH] fixed missing m4v extension --- Classes/Viewer Interface/Pluggable Players/JTMovieView.m | 2 +- Classes/Viewer Interface/Pluggable Players/RCMovieView.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/Viewer Interface/Pluggable Players/JTMovieView.m b/Classes/Viewer Interface/Pluggable Players/JTMovieView.m index a661e36..32bbf49 100644 --- a/Classes/Viewer Interface/Pluggable Players/JTMovieView.m +++ b/Classes/Viewer Interface/Pluggable Players/JTMovieView.m @@ -61,7 +61,7 @@ +(NSDictionary *)plugInfo { NSArray *extensions = [NSArray arrayWithObjects: /* File extensions */ - @"avi", @"mov", @"qt", @"mpg", @"mpeg", @"m15", @"m75", @"m2v", @"3gpp", @"mpg4", @"mp4", + @"avi", @"mov", @"qt", @"mpg", @"mpeg", @"m15", @"m75", @"m2v", @"3gpp", @"mpg4", @"mp4",@"m4v", //Commenting out image types as this view isn't design well for them,even though it will display them // @"png", @"gif", @"bmp", @"tif", @"pic", @"pct", @"pict", @"jpg", @"jpeg", @"qtif", @"swf", @"fli", @"flc", @"dv", @"wmv",@"asf", diff --git a/Classes/Viewer Interface/Pluggable Players/RCMovieView.m b/Classes/Viewer Interface/Pluggable Players/RCMovieView.m index 8a1f875..e834664 100644 --- a/Classes/Viewer Interface/Pluggable Players/RCMovieView.m +++ b/Classes/Viewer Interface/Pluggable Players/RCMovieView.m @@ -66,7 +66,7 @@ +(NSDictionary *)plugInfo { NSArray *extensions = [NSArray arrayWithObjects: /* File extensions */ - @"avi", @"mov", @"qt", @"mpg", @"mpeg", @"m15", @"m75", @"m2v", @"3gpp", @"mpg4", @"mp4",@"mkv",@"flv",@"divx", + @"avi", @"mov", @"qt", @"mpg", @"mpeg", @"m15", @"m75", @"m2v", @"3gpp", @"mpg4", @"mp4",@"mkv",@"flv",@"divx",@"m4v", //Commenting out image types as this view isn't design well for them,even though it will display them // @"png", @"gif", @"bmp", @"tif", @"pic", @"pct", @"pict", @"jpg", @"jpeg", @"qtif", @"swf", @"fli", @"flc", @"dv", @"wmv",@"asf",@"ogg",