diff options
author | Mathieu Duponchelle <mathieu.duponchelle@opencreed.com> | 2017-06-13 18:51:32 +0200 |
---|---|---|
committer | Mathieu Duponchelle <mathieu@centricular.com> | 2017-10-12 22:02:04 +0200 |
commit | c7a172517deb7ca8920b6c910998cfecd8b1893d (patch) | |
tree | c114b605f999d63090a7a9483af252ec537e2402 /ext | |
parent | 09af01a08852265c76bd1b0b9d8fe42ed2a1c919 (diff) |
gstgdkpixbufdec: stop pretending to decode gifs.
If you can't decode an animated gif, you can't decode a gif,
so stop squatting GST_RANK_SECONDARY for that format, libav
does a better job.
https://bugzilla.gnome.org/show_bug.cgi?id=784683
Diffstat (limited to 'ext')
-rw-r--r-- | ext/gdk_pixbuf/gstgdkpixbufdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gdk_pixbuf/gstgdkpixbufdec.c b/ext/gdk_pixbuf/gstgdkpixbufdec.c index 1598c53be..09211bf17 100644 --- a/ext/gdk_pixbuf/gstgdkpixbufdec.c +++ b/ext/gdk_pixbuf/gstgdkpixbufdec.c @@ -38,7 +38,7 @@ static GstStaticPadTemplate gst_gdk_pixbuf_dec_sink_template = GST_PAD_ALWAYS, GST_STATIC_CAPS ("image/png; " /* "image/jpeg; " disabled because we can't handle MJPEG */ - "image/gif; " + /*"image/gif; " disabled because we can't handle animated gifs */ "image/x-icon; " "application/x-navi-animation; " "image/x-cmu-raster; " |