mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
avdemux: Disable GIF "demuxer"
It's actually a parser but it a) can only work with the ffmpeg GIF decoder that is deactivated anyway, and b) it currently causes infinite linking of avdemux_gif elements with a multiqueue in between in decodebin. https://bugzilla.gnome.org/show_bug.cgi?id=775516
This commit is contained in:
parent
77ad28cd44
commit
35f9fd9355
1 changed files with 1 additions and 2 deletions
|
@ -2067,8 +2067,7 @@ gst_ffmpegdemux_register (GstPlugin * plugin)
|
||||||
!strcmp (in_plugin->name, "yuv4mpegpipe") ||
|
!strcmp (in_plugin->name, "yuv4mpegpipe") ||
|
||||||
!strcmp (in_plugin->name, "pva") ||
|
!strcmp (in_plugin->name, "pva") ||
|
||||||
!strcmp (in_plugin->name, "mpc") ||
|
!strcmp (in_plugin->name, "mpc") ||
|
||||||
!strcmp (in_plugin->name, "mpc8") ||
|
!strcmp (in_plugin->name, "mpc8") || !strcmp (in_plugin->name, "ivf"))
|
||||||
!strcmp (in_plugin->name, "gif") || !strcmp (in_plugin->name, "ivf"))
|
|
||||||
rank = GST_RANK_MARGINAL;
|
rank = GST_RANK_MARGINAL;
|
||||||
else {
|
else {
|
||||||
GST_DEBUG ("ignoring %s", in_plugin->name);
|
GST_DEBUG ("ignoring %s", in_plugin->name);
|
||||||
|
|
Loading…
Reference in a new issue