diff options
author | Iain Holmes <iain@prettypeople.org> | 2002-12-08 17:20:44 +0000 |
---|---|---|
committer | Iain Holmes <iain@prettypeople.org> | 2002-12-08 17:20:44 +0000 |
commit | b521a373bf88e1f2cfbc2bf41e1d7c38a032be3d (patch) | |
tree | e9f686e936abbe726344ab9c3417396ebe5fa256 /gst/mpegaudioparse | |
parent | 708cf898e85bb1742870f6b3cabcc74b28f01c5f (diff) | |
download | gst-plugins-bad-b521a373bf88e1f2cfbc2bf41e1d7c38a032be3d.tar.gz gst-plugins-bad-b521a373bf88e1f2cfbc2bf41e1d7c38a032be3d.tar.bz2 gst-plugins-bad-b521a373bf88e1f2cfbc2bf41e1d7c38a032be3d.zip |
Replace audio/mp3 with audio/x-mp3 and audio/x-flac with application/x-flac
Original commit message from CVS:
Replace audio/mp3 with audio/x-mp3 and audio/x-flac with application/x-flac
Diffstat (limited to 'gst/mpegaudioparse')
-rw-r--r-- | gst/mpegaudioparse/gstmp3types.c | 4 | ||||
-rw-r--r-- | gst/mpegaudioparse/gstmpegaudioparse.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gst/mpegaudioparse/gstmp3types.c b/gst/mpegaudioparse/gstmp3types.c index d0ee00c9..43c82b69 100644 --- a/gst/mpegaudioparse/gstmp3types.c +++ b/gst/mpegaudioparse/gstmp3types.c @@ -24,7 +24,7 @@ static GstCaps* mp3_type_find(GstBuffer *buf, gpointer private); static GstTypeDefinition mp3type_definitions[] = { - { "mp3types_audio/mp3", "audio/mp3", ".mp3 .mp2 .mp1 .mpga", mp3_type_find }, + { "mp3types_audio/x-mp3", "audio/x-mp3", ".mp3 .mp2 .mp1 .mpga", mp3_type_find }, { NULL, NULL, NULL, NULL }, }; @@ -92,7 +92,7 @@ mp3_type_find(GstBuffer *buf, gpointer private) return NULL; done: - caps = gst_caps_new ("mp3_type_find", "audio/mp3", NULL); + caps = gst_caps_new ("mp3_type_find", "audio/x-mp3", NULL); return caps; } diff --git a/gst/mpegaudioparse/gstmpegaudioparse.c b/gst/mpegaudioparse/gstmpegaudioparse.c index fa466f68..f78415f1 100644 --- a/gst/mpegaudioparse/gstmpegaudioparse.c +++ b/gst/mpegaudioparse/gstmpegaudioparse.c @@ -42,7 +42,7 @@ mp3_src_factory (void) GST_PAD_ALWAYS, gst_caps_new ( "mp3parse_src", - "audio/mp3", + "audio/x-mp3", /* gst_props_new ( "layer", GST_PROPS_INT_RANGE (1, 3), @@ -63,7 +63,7 @@ mp3_sink_factory (void) GST_PAD_ALWAYS, gst_caps_new ( "mp3parse_sink", - "audio/mp3", + "audio/x-mp3", NULL), NULL); }; |