mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
gst/gsttaglist.*: Do as tim pointed out and actually register the new tag. Also improve te docs and use gst_tag_merge...
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.
This commit is contained in:
parent
df29b0ed39
commit
8e729fc6a2
3 changed files with 12 additions and 2 deletions
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue