ffmpegmux: Disable raw muxers
authorDavid Schleef <ds@schleef.org>
Fri, 25 Jun 2010 22:57:45 +0000 (15:57 -0700)
committerEdward Hervey <bilboed@bilboed.com>
Sun, 27 Jun 2010 08:38:24 +0000 (10:38 +0200)
They are effectively identity elements.  Many are already
disabled via blacklist.

https://bugzilla.gnome.org/show_bug.cgi?id=622773

ext/ffmpeg/gstffmpegmux.c

index d7f030b..b6f4a4b 100644 (file)
@@ -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. */