pass on all possible mime types as hints add extra debug info to detectendless loop
authorThomas Vander Stichele <thomas@apestaart.org>
Tue, 17 Feb 2004 18:09:15 +0000 (18:09 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Tue, 17 Feb 2004 18:09:15 +0000 (18:09 +0000)
Original commit message from CVS:
pass on all possible mime types as hints
add extra debug info to detectendless loop

ChangeLog
ext/gdk_pixbuf/gstgdkpixbuf.c

index 492666a..004227e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
+          pass on all possible mime types as typefind hints
+
 2004-02-17  Julien MOUTTE <julien@moutte.net>
 
        * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
index c3c9e5f..fe40b92 100644 (file)
@@ -403,7 +403,7 @@ gst_gdk_pixbuf_type_find (GstTypeFind *tf, gpointer ignore)
   data = gst_type_find_peek (tf, 0, GST_GDK_PIXBUF_TYPE_FIND_SIZE);
   if (data == NULL) return;
 
-  GST_DEBUG ("gst_gdk_pixbuf_type_find");
+  GST_DEBUG ("creating new loader");
 
   pixbuf_loader = gdk_pixbuf_loader_new();
   
@@ -414,15 +414,25 @@ gst_gdk_pixbuf_type_find (GstTypeFind *tf, gpointer ignore)
 
   if (format != NULL) {
     GstCaps *caps;
-    gchar **mlist = gdk_pixbuf_format_get_mime_types(format);
+    gchar **p;
+    gchar **mlist = gdk_pixbuf_format_get_mime_types (format);
 
-    caps = gst_caps_new_simple (mlist[0], NULL);
-    gst_type_find_suggest (tf, GST_TYPE_FIND_MINIMUM, caps);
-    gst_caps_free (caps);
+    for (p = mlist; *p; ++p)
+    {
+      GST_DEBUG ("suggesting mime type %s", *p);
+      caps = gst_caps_new_simple (*p, NULL);
+      gst_type_find_suggest (tf, GST_TYPE_FIND_MINIMUM, caps);
+      gst_caps_free (caps);
+    }
     g_strfreev (mlist);
   }
 
+  GST_DEBUG ("closing pixbuf loader, hope it doesn't hang ...");
+  /* librsvg 2.4.x has a bug where it triggers an endless loop in trying
+     to close a gzip that's not an svg; fixed upstream but no good way
+     to work around it */
   gdk_pixbuf_loader_close (pixbuf_loader, NULL);
+  GST_DEBUG ("closed pixbuf loader");
   g_object_unref (G_OBJECT (pixbuf_loader));
 }