Skip to content

Commit

Permalink
fixed missing m4v extension
Browse files Browse the repository at this point in the history
  • Loading branch information
jtuley committed Feb 6, 2010
1 parent 3a93315 commit 991ba53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/Viewer Interface/Pluggable Players/JTMovieView.m
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion Classes/Viewer Interface/Pluggable Players/RCMovieView.m
Expand Up @@ -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",
Expand Down

0 comments on commit 991ba53

Please sign in to comment.