avmux: Ignore stream_segment,ssegment muxer that is provided by ffmpeg

The comma confuses our code, e.g. it's not a valid element name or structure
name.
This commit is contained in:
Sebastian Dröge 2015-06-29 13:29:05 +02:00
parent 8271b2755a
commit 626152dd6f

View file

@ -935,7 +935,8 @@ gst_ffmpegmux_register (GstPlugin * plugin)
(!strncmp (in_plugin->name, "ass", 3)) ||
(!strncmp (in_plugin->name, "ffmetadata", 10)) ||
(!strncmp (in_plugin->name, "srt", 3)) ||
!strcmp (in_plugin->name, "segment")
!strcmp (in_plugin->name, "segment") ||
!strcmp (in_plugin->name, "stream_segment,ssegment")
) {
GST_LOG ("Ignoring muxer %s", in_plugin->name);
goto next;