Skip to content
Snippets Groups Projects
Commit 52e8d625 authored by David Schleef's avatar David Schleef Committed by Edward Hervey
Browse files

ffmpegmux: Disable raw muxers

They are effectively identity elements.  Many are already
disabled via blacklist.

https://bugzilla.gnome.org/show_bug.cgi?id=622773
parent 7f12d83a
No related branches found
No related tags found
No related merge requests found
......@@ -835,6 +835,11 @@ gst_ffmpegmux_register (GstPlugin * plugin)
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
* muxer type. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment