mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 06:22:29 +00:00
avmux: blacklist "segment" muxer
Causes run-time warnings.
This commit is contained in:
parent
960a59a935
commit
c4ca1e86f8
1 changed files with 2 additions and 1 deletions
|
@ -929,7 +929,8 @@ gst_ffmpegmux_register (GstPlugin * plugin)
|
|||
(!strncmp (in_plugin->name, "rtp", 3)) ||
|
||||
(!strncmp (in_plugin->name, "ass", 3)) ||
|
||||
(!strncmp (in_plugin->name, "ffmetadata", 10)) ||
|
||||
(!strncmp (in_plugin->name, "srt", 3))
|
||||
(!strncmp (in_plugin->name, "srt", 3)) ||
|
||||
!strcmp (in_plugin->name, "segment")
|
||||
) {
|
||||
GST_LOG ("Ignoring muxer %s", in_plugin->name);
|
||||
goto next;
|
||||
|
|
Loading…
Reference in a new issue