nona99 - 2011-01-09

attached is a patch which enables playback of vdr-recordings (see http://www.tvdr.de/)

Index: utils.c
===================================================================
--- utils.c     (Revision 67)
+++ utils.c     (Arbeitskopie)
@@ -218,6 +218,7 @@
 #ifdef TIVO_SUPPORT
                ends_with(file, ".TiVo") ||
 #endif
+               ends_with(file, ".vdr") ||
                ends_with(file, ".mov") || ends_with(file, ".3gp"));
 }
Index: upnpsoap.c
===================================================================
--- upnpsoap.c  (Revision 67)
+++ upnpsoap.c  (Arbeitskopie)
@@ -259,6 +259,8 @@
                                strcpy(buf, "3gp");
                        else if( strcmp(mime+6, "x-tivo-mpeg") == 0 )
                                strcpy(buf, "TiVo");
+                       else if( strcmp(mime+6, "vdr") == 0 )
+                               strcpy(buf, "mpg");
                        else
                                strcpy(buf, "dat");
                        break;