[mythtv-commits] Ticket #3760: mythgalery wmv files not showing
MythTV
mythtv at cvs.mythtv.org
Sun Jul 22 21:31:58 UTC 2007
#3760: mythgalery wmv files not showing
-------------------------------------------------+--------------------------
Reporter: michael bishop <clever at nbnet.nb.ca> | Owner: ijr
Type: defect | Status: new
Priority: minor | Milestone: unknown
Component: mythgallery | Version: 0.20-fixes
Severity: low | Mlocked: 0
-------------------------------------------------+--------------------------
ocgltd on #mythtv-users was having a problem with wmv files not showing in
mythgalery
as i guessed the code doesnt understand that wmv files are videos
he was using 0.20 fixes but the bug was also in my svn trunk version
this patch will probly fix wmv files but there may he others that need to
be added if they cause problems
{{{
Index: mythgallery/mythgallery/constants.h
===================================================================
--- mythgallery/mythgallery/constants.h (revision 13460)
+++ mythgallery/mythgallery/constants.h (working copy)
@@ -26,7 +26,7 @@
"*.jpg *.JPG *.jpeg *.JPEG *.png *.PNG "
"*.tif *.TIF *.tiff *.TIFF *.bmp *.BMP *.gif *.GIF");
static const QString MOVIE_FILENAMES(
- "*.avi *.AVI *.mpg *.MPG *.mpeg *.MPEG *.mov *.MOV");
+ "*.avi *.AVI *.mpg *.MPG *.mpeg *.MPEG *.mov *.MOV *.wmv *.WMV");
static const QString MEDIA_FILENAMES =
IMAGE_FILENAMES + QString(" ") + MOVIE_FILENAMES;
}}}
--
Ticket URL: <http://svn.mythtv.org/trac/ticket/3760>
MythTV <http://svn.mythtv.org/trac>
MythTV
More information about the mythtv-commits
mailing list