diff options
Diffstat (limited to 'media-plugins/gst-plugins-ffmpeg/files/0.10.13_p201211-coma.patch')
-rw-r--r-- | media-plugins/gst-plugins-ffmpeg/files/0.10.13_p201211-coma.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/media-plugins/gst-plugins-ffmpeg/files/0.10.13_p201211-coma.patch b/media-plugins/gst-plugins-ffmpeg/files/0.10.13_p201211-coma.patch new file mode 100644 index 000000000000..0426d00301c5 --- /dev/null +++ b/media-plugins/gst-plugins-ffmpeg/files/0.10.13_p201211-coma.patch @@ -0,0 +1,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++; + } |