summaryrefslogtreecommitdiff
blob: 0426d00301c5ea263fd4cd4acc7cbfda488978a6 (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-ffmpeg-0.10.13_p201211/ext/ffmpeg/gstffmpegmux.c
===================================================================
--- gst-ffmpeg-0.10.13_p201211.orig/ext/ffmpeg/gstffmpegmux.c
+++ gst-ffmpeg-0.10.13_p201211/ext/ffmpeg/gstffmpegmux.c
@@ -936,7 +936,7 @@ gst_ffmpegmux_register (GstPlugin * plug
     p = type_name;
 
     while (*p) {
-      if (*p == '.')
+      if (*p == '.' || *p == ',')
         *p = '_';
       p++;
     }