aboutsummaryrefslogtreecommitdiff
blob: 4af35d2c1f4c5d47aa62e2d7491ebc9d8ce2d004 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Some muxers come with a ',' in their name, replace it by '_' as in the other
places.

Index: gst-libav-1.1.0_pre20130128/ext/libav/gstavmux.c
===================================================================
--- gst-libav-1.1.0_pre20130128.orig/ext/libav/gstavmux.c
+++ gst-libav-1.1.0_pre20130128/ext/libav/gstavmux.c
@@ -937,7 +937,7 @@ gst_ffmpegmux_register (GstPlugin * plug
     p = type_name;
 
     while (*p) {
-      if (*p == '.')
+      if (*p == '.' || *p == ',')
         *p = '_';
       p++;
     }