summaryrefslogtreecommitdiffstats
path: root/gst/multipart
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2009-05-20 14:02:43 +0200
committerWim Taymans <wim@metal.(none)>2009-05-21 22:05:10 +0200
commitc50edb8145392ea15f3df1fcbe23854529739a76 (patch)
tree5b9bb1482bd4ab77325651364d062e8211611ee2 /gst/multipart
parent54afebf426e6a1aca1023176eb3d9ff75009d552 (diff)
multipartdemux: add more mime types
Add mime-type for Panasonic g726 and add more required caps properties for other G726 mime-types. Make mime-types case insensitive. See #582169
Diffstat (limited to 'gst/multipart')
-rw-r--r--gst/multipart/multipartdemux.c22
1 files changed, 15 insertions, 7 deletions
diff --git a/gst/multipart/multipartdemux.c b/gst/multipart/multipartdemux.c
index 8669b974..58e75481 100644
--- a/gst/multipart/multipartdemux.c
+++ b/gst/multipart/multipartdemux.c
@@ -60,7 +60,7 @@ static const GstElementDetails gst_multipart_demux_details =
GST_ELEMENT_DETAILS ("Multipart demuxer",
"Codec/Demuxer",
"demux multipart streams",
- "Wim Taymans <wim@fluendo.com>, Sjoerd Simons <sjoerd@luon.net>");
+ "Wim Taymans <wim.taymans@gmail.com>, Sjoerd Simons <sjoerd@luon.net>");
/* signals and args */
@@ -99,14 +99,22 @@ typedef struct
const gchar *val;
} GstNamesMap;
-/* convert from mime types to gst structure names. Add more when needed. */
+/* convert from mime types to gst structure names. Add more when needed. The
+ * mime-type is stored as lowercase */
static const GstNamesMap gstnames[] = {
/* RFC 2046 says audio/basic is mulaw, mono, 8000Hz */
{"audio/basic", "audio/x-mulaw, channels=1, rate=8000"},
- {"audio/G726-16", "audio/x-adpcm, bitrate=16000"},
- {"audio/G726-24", "audio/x-adpcm, bitrate=24000"},
- {"audio/G726-32", "audio/x-adpcm, bitrate=32000"},
- {"audio/G726-40", "audio/x-adpcm, bitrate=40000"},
+ {"audio/g726-16",
+ "audio/x-adpcm, bitrate=16000, layout=g726, channels=1, rate=8000"},
+ {"audio/g726-24",
+ "audio/x-adpcm, bitrate=24000, layout=g726, channels=1, rate=8000"},
+ {"audio/g726-32",
+ "audio/x-adpcm, bitrate=32000, layout=g726, channels=1, rate=8000"},
+ {"audio/g726-40",
+ "audio/x-adpcm, bitrate=40000, layout=g726, channels=1, rate=8000"},
+ /* Panasonic Network Cameras non-standard types */
+ {"audio/g726",
+ "audio/x-adpcm, bitrate=32000, layout=g726, channels=1, rate=8000"},
{NULL, NULL}
};
@@ -420,7 +428,7 @@ multipart_parse_header (GstMultipartDemux * multipart)
if (len >= 14 && !g_ascii_strncasecmp ("content-type:", (gchar *) pos, 13)) {
g_free (multipart->mime_type);
- multipart->mime_type = g_strndup ((gchar *) pos + 14, len - 14);
+ multipart->mime_type = g_ascii_strdown ((gchar *) pos + 14, len - 14);
} else if (len >= 15 &&
!g_ascii_strncasecmp ("content-length:", (gchar *) pos, 15)) {
multipart->content_length =