mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
gstffmpegmux: Blacklist some muxer formats
This commit is contained in:
parent
cc4a11831d
commit
9a1d1fef32
1 changed files with 3 additions and 1 deletions
|
@ -903,7 +903,9 @@ gst_ffmpegmux_register (GstPlugin * plugin)
|
||||||
(!strncmp (in_plugin->name, "alaw", 4)) ||
|
(!strncmp (in_plugin->name, "alaw", 4)) ||
|
||||||
(!strncmp (in_plugin->name, "h26", 3)) ||
|
(!strncmp (in_plugin->name, "h26", 3)) ||
|
||||||
(!strncmp (in_plugin->name, "rtp", 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);
|
GST_LOG ("Ignoring muxer %s", in_plugin->name);
|
||||||
goto next;
|
goto next;
|
||||||
|
|
Loading…
Reference in a new issue