mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
avmux: Blacklist some subtitle and adaptive streaming muxers
This commit is contained in:
parent
97f58baecd
commit
b526816cfe
1 changed files with 7 additions and 1 deletions
|
@ -936,7 +936,13 @@ gst_ffmpegmux_register (GstPlugin * plugin)
|
||||||
(!strncmp (in_plugin->name, "ffmetadata", 10)) ||
|
(!strncmp (in_plugin->name, "ffmetadata", 10)) ||
|
||||||
(!strncmp (in_plugin->name, "srt", 3)) ||
|
(!strncmp (in_plugin->name, "srt", 3)) ||
|
||||||
!strcmp (in_plugin->name, "segment") ||
|
!strcmp (in_plugin->name, "segment") ||
|
||||||
!strcmp (in_plugin->name, "stream_segment,ssegment")
|
!strcmp (in_plugin->name, "stream_segment,ssegment") ||
|
||||||
|
!strcmp (in_plugin->name, "jacosub") ||
|
||||||
|
!strcmp (in_plugin->name, "webvtt") ||
|
||||||
|
!strcmp (in_plugin->name, "lrc") ||
|
||||||
|
!strcmp (in_plugin->name, "microdvd") ||
|
||||||
|
!strcmp (in_plugin->name, "tee") ||
|
||||||
|
!strncmp (in_plugin->name, "webm", 4)
|
||||||
) {
|
) {
|
||||||
GST_LOG ("Ignoring muxer %s", in_plugin->name);
|
GST_LOG ("Ignoring muxer %s", in_plugin->name);
|
||||||
goto next;
|
goto next;
|
||||||
|
|
Loading…
Reference in a new issue