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:
Hans de Goede 2013-08-13 12:49:26 +02:00 committed by Sebastian Dröge
parent d541d8527d
commit 3d628e5676

View file

@ -939,6 +939,8 @@ gst_ffmpegmux_register (GstPlugin * plugin)
while (*p) {
if (*p == '.')
*p = '_';
if (*p == ',')
*p = '_';
p++;
}