gst/gsttaglist.c: Change tag type from STRING to DOUBLE. Apply ChangeLog surgery...
authorStefan Kost <ensonic@users.sourceforge.net>
Mon, 15 Jan 2007 14:39:51 +0000 (14:39 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Mon, 15 Jan 2007 14:39:51 +0000 (14:39 +0000)
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
gst/gsttaglist.c

index 473d75c..e507265 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,15 @@
 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
 
+       * 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  <ensonic@users.sf.net>
+
        * 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  <ensonic@users.sf.net>
 
@@ -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  <wingo@pobox.com>
 
index 35d0537..b295421 100644 (file)
@@ -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);
 
 }