From: Thomas Vander Stichele Date: Tue, 17 Feb 2004 18:09:15 +0000 (+0000) Subject: pass on all possible mime types as hints add extra debug info to detectendless loop X-Git-Tag: 1.19.3~509^2~15186 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e4e4c9ec9dc1fab6eccdc3339b38efccbfd7ed6;p=platform%2Fupstream%2Fgstreamer.git pass on all possible mime types as hints add extra debug info to detectendless loop Original commit message from CVS: pass on all possible mime types as hints add extra debug info to detectendless loop --- diff --git a/ChangeLog b/ChangeLog index 492666a..004227e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-02-17 Thomas Vander Stichele + + * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find): + pass on all possible mime types as typefind hints + 2004-02-17 Julien MOUTTE * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new): diff --git a/ext/gdk_pixbuf/gstgdkpixbuf.c b/ext/gdk_pixbuf/gstgdkpixbuf.c index c3c9e5f..fe40b92 100644 --- a/ext/gdk_pixbuf/gstgdkpixbuf.c +++ b/ext/gdk_pixbuf/gstgdkpixbuf.c @@ -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)); }