summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2013-08-13 12:49:26 +0200
committerSebastian Dröge <slomo@circular-chaos.org>2013-08-13 12:49:54 +0200
commit3d628e567635de6eb8d9ca366865dcb317f53e20 (patch)
tree32a6122fde137e43f875343b768f99cc2a6e93c5 /ext
parentd541d8527d90572422cbded8dd6ded50e2694e41 (diff)
downloadgstreamer-3d628e567635de6eb8d9ca366865dcb317f53e20.tar.gz
avmux: Don't fail on commas in the libav muxer type names
https://bugzilla.gnome.org/show_bug.cgi?id=697512
Diffstat (limited to 'ext')
-rw-r--r--ext/libav/gstavmux.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/libav/gstavmux.c b/ext/libav/gstavmux.c
index 2ee95b99f7..e15931c1d3 100644
--- a/ext/libav/gstavmux.c
+++ b/ext/libav/gstavmux.c
@@ -939,6 +939,8 @@ gst_ffmpegmux_register (GstPlugin * plugin)
while (*p) {
if (*p == '.')
*p = '_';
+ if (*p == ',')
+ *p = '_';
p++;
}