mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
ffmpegmux: Disable raw muxers
They are effectively identity elements. Many are already disabled via blacklist. https://bugzilla.gnome.org/show_bug.cgi?id=622773
This commit is contained in:
parent
7f12d83a39
commit
52e8d62513
1 changed files with 5 additions and 0 deletions
|
@ -835,6 +835,11 @@ gst_ffmpegmux_register (GstPlugin * plugin)
|
||||||
goto next;
|
goto next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((!strncmp (in_plugin->long_name, "raw ", 4))) {
|
||||||
|
GST_LOG ("Ignoring raw muxer %s", in_plugin->name);
|
||||||
|
goto next;
|
||||||
|
}
|
||||||
|
|
||||||
/* FIXME : We need a fast way to know whether we have mappings for this
|
/* FIXME : We need a fast way to know whether we have mappings for this
|
||||||
* muxer type. */
|
* muxer type. */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue