mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
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.
This commit is contained in:
parent
f65b8cedd9
commit
ea3358fb92
2 changed files with 10 additions and 1 deletions
|
@ -1,3 +1,12 @@
|
|||
2006-04-18 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* 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.
|
||||
|
||||
2006-04-18 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_setcaps),
|
||||
|
|
|
@ -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; "
|
||||
|
|
Loading…
Reference in a new issue