gst/gsttaglist.*: Do as tim pointed out and actually register the new tag. Also impro...
authorStefan Kost <ensonic@users.sourceforge.net>
Mon, 4 Aug 2008 12:30:26 +0000 (12:30 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Mon, 4 Aug 2008 12:30:26 +0000 (12:30 +0000)
Original commit message from CVS:
* gst/gsttaglist.c:
* gst/gsttaglist.h:
Do as tim pointed out and actually register the new tag. Also improve
te docs and use gst_tag_merge_strings_with_comma() method to allow
retriving all keywords merged in one list.

ChangeLog
gst/gsttaglist.c
gst/gsttaglist.h

index 5ae341f..650481d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-08-04  Stefan Kost  <ensonic@users.sf.net>
+
+       * gst/gsttaglist.c:
+       * gst/gsttaglist.h:
+         Do as tim pointed out and actually register the new tag. Also improve
+         te docs and use gst_tag_merge_strings_with_comma() method to allow
+         retriving all keywords merged in one list.
+
 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
 
        * configure.ac:
index 870a300..f8ca29b 100644 (file)
@@ -245,7 +245,9 @@ _gst_tag_initialize (void)
       gst_tag_merge_use_first);
   gst_tag_register (GST_TAG_BEATS_PER_MINUTE, GST_TAG_FLAG_META, G_TYPE_DOUBLE,
       _("beats per minute"), _("number of beats per minute in audio"), NULL);
-
+  gst_tag_register (GST_TAG_KEYWORDS, GST_TAG_FLAG_META, G_TYPE_STRING,
+      _("keywords"), _("comma separated keywords describing the content"),
+      NULL);
 }
 
 /**
index 3af5097..41afea1 100644 (file)
@@ -677,7 +677,7 @@ gboolean     gst_tag_list_get_date_index    (const GstTagList * list,
 /**
  * GST_TAG_KEYWORDS:
  *
- * series of keywords describing the content (string).
+ * comma separated keywords describing the content (string).
  *
  * Since: 0.10.21
  */