summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <edward.hervey@collabora.co.uk>2011-01-24 17:43:44 +0100
committerEdward Hervey <edward.hervey@collabora.co.uk>2011-01-24 17:43:44 +0100
commit9a1d1fef32fc7e6fe009be313527e83e3276d629 (patch)
tree427ee0642a2682be6ca3240473ae3fd4374346cf
parentcc4a11831d93d3d1b33ce6ddd86daba8d0d9051c (diff)
gstffmpegmux: Blacklist some muxer formats
-rw-r--r--ext/ffmpeg/gstffmpegmux.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/ffmpeg/gstffmpegmux.c b/ext/ffmpeg/gstffmpegmux.c
index bedda87..91138f0 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;