mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 02:28:27 +00:00
avmux: Don't fail on commas in the libav muxer type names
https://bugzilla.gnome.org/show_bug.cgi?id=697512
This commit is contained in:
parent
d541d8527d
commit
3d628e5676
1 changed files with 2 additions and 0 deletions
|
@ -939,6 +939,8 @@ gst_ffmpegmux_register (GstPlugin * plugin)
|
|||
while (*p) {
|
||||
if (*p == '.')
|
||||
*p = '_';
|
||||
if (*p == ',')
|
||||
*p = '_';
|
||||
p++;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue