gstffmpeg(de)mux: Disable known broken (de)muxers

Idea provided by David Schleef
Support provided by Michael Smith and Tim Mueller
Food and Drinks provided by Toronado
This commit is contained in:
Edward Hervey 2011-04-09 01:17:24 +02:00
parent dd7b219c42
commit c35c1d1446

View file

@ -1978,8 +1978,10 @@ gst_ffmpegdemux_register (GstPlugin * plugin)
!strcmp (in_plugin->name, "yuv4mpegpipe") ||
!strcmp (in_plugin->name, "mpc") || !strcmp (in_plugin->name, "gif"))
rank = GST_RANK_MARGINAL;
else
rank = GST_RANK_NONE;
else {
GST_DEBUG ("ignoring %s", in_plugin->name);
goto next;
}
p = name = g_strdup (in_plugin->name);
while (*p) {