From 9a1d1fef32fc7e6fe009be313527e83e3276d629 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Mon, 24 Jan 2011 17:43:44 +0100 Subject: [PATCH] gstffmpegmux: Blacklist some muxer formats --- ext/ffmpeg/gstffmpegmux.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ext/ffmpeg/gstffmpegmux.c b/ext/ffmpeg/gstffmpegmux.c index bedda87513..91138f0a6f 100644 --- a/ext/ffmpeg/gstffmpegmux.c +++ b/ext/ffmpeg/gstffmpegmux.c @@ -903,7 +903,9 @@ gst_ffmpegmux_register (GstPlugin * plugin) (!strncmp (in_plugin->name, "alaw", 4)) || (!strncmp (in_plugin->name, "h26", 3)) || (!strncmp (in_plugin->name, "rtp", 3)) || - (!strncmp (in_plugin->name, "ass", 3)) + (!strncmp (in_plugin->name, "ass", 3)) || + (!strncmp (in_plugin->name, "ffmetadata", 10)) || + (!strncmp (in_plugin->name, "srt", 3)) ) { GST_LOG ("Ignoring muxer %s", in_plugin->name); goto next;