summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2004-02-17 18:09:15 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2004-02-17 18:09:15 +0000
commit2e4e4c9ec9dc1fab6eccdc3339b38efccbfd7ed6 (patch)
tree56dcdadf487f323c3ed8f97b13a006e91bf7d620
parent53a8aaa820067d5af1e73d98b007417e5a4c20cd (diff)
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
-rw-r--r--ChangeLog5
-rw-r--r--ext/gdk_pixbuf/gstgdkpixbuf.c20
2 files changed, 20 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 492666a5..004227e0 100644
--- 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):
diff --git a/ext/gdk_pixbuf/gstgdkpixbuf.c b/ext/gdk_pixbuf/gstgdkpixbuf.c
index c3c9e5f1..fe40b925 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));
}