summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2010-06-25 15:57:45 -0700
committerEdward Hervey <bilboed@bilboed.com>2010-06-27 10:38:24 +0200
commit52e8d6251307c32b412e0f40b3be4351c71a4de0 (patch)
treea0e4cca63003dbc9fb53ca33d7718f8d9028d74f
parent7f12d83a3942afaf5da05df397f5620abdcdd268 (diff)
ffmpegmux: Disable raw muxers
They are effectively identity elements. Many are already disabled via blacklist. https://bugzilla.gnome.org/show_bug.cgi?id=622773
-rw-r--r--ext/ffmpeg/gstffmpegmux.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/ffmpeg/gstffmpegmux.c b/ext/ffmpeg/gstffmpegmux.c
index d7f030b..b6f4a4b 100644
--- a/ext/ffmpeg/gstffmpegmux.c
+++ b/ext/ffmpeg/gstffmpegmux.c
@@ -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. */