From 6fa79ab38715452bb12b191e2245e6afd9ad99b9 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Mon, 15 Jan 2007 14:39:51 +0000 Subject: [PATCH] gst/gsttaglist.c: Change tag type from STRING to DOUBLE. Apply ChangeLog surgery for my previous two entries. Original commit message from CVS: * gst/gsttaglist.c: (_gst_tag_initialize): Change tag type from STRING to DOUBLE. Apply ChangeLog surgery for my previous two entries. --- ChangeLog | 10 ++++++++-- gst/gsttaglist.c | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 473d75c553..e507265ef2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,15 @@ +2007-01-15 Stefan Kost + + * gst/gsttaglist.c: (_gst_tag_initialize): + Change tag type from STRING to DOUBLE. Apply ChangeLog surgery for my + previous two entries. + 2007-01-15 Stefan Kost * docs/gst/gstreamer-sections.txt: * gst/gsttaglist.c: (_gst_tag_initialize): * gst/gsttaglist.h: - add tag support for beat-per-minute + Add tag support for beat-per-minute. 2007-01-15 Stefan Kost @@ -20,7 +26,7 @@ (gst_registry_binary_load_plugin), (gst_registry_binary_read_cache): * gst/gstregistrybinary.h: - use glib types, cleanup comments, impement interfaces and uri-types + Use glib types, cleanup comments, impement interfaces and uri-types. 2007-01-13 Andy Wingo diff --git a/gst/gsttaglist.c b/gst/gsttaglist.c index 35d0537282..b29542130c 100644 --- a/gst/gsttaglist.c +++ b/gst/gsttaglist.c @@ -213,7 +213,7 @@ _gst_tag_initialize (void) _("image"), _("image related to this stream"), gst_tag_merge_use_first); gst_tag_register (GST_TAG_PREVIEW_IMAGE, GST_TAG_FLAG_META, GST_TYPE_BUFFER, _("preview image"), _("preview image related to this stream"), NULL); - gst_tag_register (GST_TAG_BEATS_PER_MINUTE, GST_TAG_FLAG_META, G_TYPE_STRING, + 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); }