From ea3358fb923396982a49ecc9f92acb97915a7f0d Mon Sep 17 00:00:00 2001 From: Tim-Philipp Müller Date: Tue, 18 Apr 2006 18:14:34 +0000 Subject: ext/gdk_pixbuf/gstgdkpixbuf.c: Leave JPEG decoding to our jpegdec plugin. gdkpixbufdec cannot handle MJPEG streams an... Original commit message from CVS: * ext/gdk_pixbuf/gstgdkpixbuf.c: Leave JPEG decoding to our jpegdec plugin. gdkpixbufdec cannot handle MJPEG streams and might be autoplugged for those if the user doesn't have jpegdec installed (resulting in a cryptic error message about huffman tables). Better to disable JPEG decoding here and let the user figure out that she needs to install jpegdec. --- ext/gdk_pixbuf/gstgdkpixbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/gdk_pixbuf') diff --git a/ext/gdk_pixbuf/gstgdkpixbuf.c b/ext/gdk_pixbuf/gstgdkpixbuf.c index c29ae468..d0e6fc35 100644 --- a/ext/gdk_pixbuf/gstgdkpixbuf.c +++ b/ext/gdk_pixbuf/gstgdkpixbuf.c @@ -48,7 +48,7 @@ static GstStaticPadTemplate gst_gdk_pixbuf_sink_template = GST_PAD_SINK, GST_PAD_ALWAYS, GST_STATIC_CAPS ("image/png; " - "image/jpeg; " + /* "image/jpeg; " disabled because we can't handle MJPEG */ "image/gif; " "image/x-icon; " "application/x-navi-animation; " -- cgit