mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
ffdec: Blacklist non-working subtitle decoders
This include decoder for ASS, SRT, PGS, DVD and DVB. Those are generated with bad capabilities and are not usable in GStreamer. Other elements exist to handle those subtitle formats. https://bugzilla.gnome.org/show_bug.cgi?id=658019
This commit is contained in:
parent
7b7928082b
commit
eacf516f7f
1 changed files with 6 additions and 1 deletions
|
@ -2935,7 +2935,12 @@ gst_ffmpegdec_register (GstPlugin * plugin)
|
|||
!strcmp (in_plugin->name, "mp1") ||
|
||||
!strcmp (in_plugin->name, "mp2") ||
|
||||
!strcmp (in_plugin->name, "libfaad") ||
|
||||
!strcmp (in_plugin->name, "mpeg4aac")) {
|
||||
!strcmp (in_plugin->name, "mpeg4aac") ||
|
||||
!strcmp (in_plugin->name, "ass") ||
|
||||
!strcmp (in_plugin->name, "srt") ||
|
||||
!strcmp (in_plugin->name, "pgssub") ||
|
||||
!strcmp (in_plugin->name, "dvdsub") ||
|
||||
!strcmp (in_plugin->name, "dvbsub")) {
|
||||
GST_LOG ("Ignoring decoder %s", in_plugin->name);
|
||||
goto next;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue