From 4272238399f10aad12d92180670018c33c95f555 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sun, 30 Mar 2003 16:22:34 +0000 Subject: [PATCH] conform to vorbis metadata spec: http://www.xiph.org/ogg/vorbis/doc/v-comment.html Original commit message from CVS: conform to vorbis metadata spec: http://www.xiph.org/ogg/vorbis/doc/v-comment.html --- ext/vorbis/vorbisenc.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ext/vorbis/vorbisenc.c b/ext/vorbis/vorbisenc.c index 88b37ac715..a3905bd950 100644 --- a/ext/vorbis/vorbisenc.c +++ b/ext/vorbis/vorbisenc.c @@ -430,13 +430,13 @@ gst_vorbisenc_init (VorbisEnc * vorbisenc) vorbisenc->metadata = GST_CAPS_NEW ( "vorbisenc_metadata", "application/x-gst-metadata", - "comment", GST_PROPS_STRING ("Track encoded with GStreamer"), - "date", GST_PROPS_STRING (""), - "tracknum", GST_PROPS_STRING (""), - "title", GST_PROPS_STRING (""), - "artist", GST_PROPS_STRING (""), - "album", GST_PROPS_STRING (""), - "genre", GST_PROPS_STRING ("") + "DESCRIPTION", GST_PROPS_STRING ("Track encoded with GStreamer"), + "DATE", GST_PROPS_STRING (""), + "TRACKNUMBER", GST_PROPS_STRING (""), + "TITLE", GST_PROPS_STRING (""), + "ARTIST", GST_PROPS_STRING (""), + "ALBUM", GST_PROPS_STRING (""), + "GENRE", GST_PROPS_STRING ("") );