Original commit message from CVS:
* gst/gststructure.c:
Allow '+' as well, it can be part of media or mime types
such as image/svg+xml.
+2007-10-16 Tim-Philipp Müller <tim at centricular dot net>
+
+ * gst/gststructure.c:
+ Allow '+' as well, it can be part of media or mime types
+ such as image/svg+xml.
+
2007-10-16 Tim-Philipp Müller <tim at centricular dot net>
* docs/gst/gstreamer-sections.txt:
/* FIXME: test name string more */
s = &name[1];
- while (*s && (g_ascii_isalnum (*s) || strchr ("/-_.:", *s) != NULL))
+ while (*s && (g_ascii_isalnum (*s) || strchr ("/-_.:+", *s) != NULL))
s++;
if (*s != '\0') {
GST_WARNING ("Invalid character '%c' at offset %lu in structure name: %s",