mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 07:08:23 +00:00
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:
parent
8271b2755a
commit
626152dd6f
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue