diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2007-01-15 14:39:51 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2007-01-15 14:39:51 +0000 |
commit | 6fa79ab38715452bb12b191e2245e6afd9ad99b9 (patch) | |
tree | 6a14855f60fabea7881b0998d7876c2d83e13748 | |
parent | 0e96e3d727faf4d5b6b881bc9669b481e2a59e00 (diff) |
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.
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | gst/gsttaglist.c | 2 |
2 files changed, 9 insertions, 3 deletions
@@ -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> diff --git a/gst/gsttaglist.c b/gst/gsttaglist.c index 35d053728..b29542130 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); } |