mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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.
This commit is contained in:
parent
0e96e3d727
commit
6fa79ab387
2 changed files with 9 additions and 3 deletions
10
ChangeLog
10
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>
|
2007-01-15 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
* docs/gst/gstreamer-sections.txt:
|
* docs/gst/gstreamer-sections.txt:
|
||||||
* gst/gsttaglist.c: (_gst_tag_initialize):
|
* gst/gsttaglist.c: (_gst_tag_initialize):
|
||||||
* gst/gsttaglist.h:
|
* 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>
|
2007-01-15 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
@ -20,7 +26,7 @@
|
||||||
(gst_registry_binary_load_plugin),
|
(gst_registry_binary_load_plugin),
|
||||||
(gst_registry_binary_read_cache):
|
(gst_registry_binary_read_cache):
|
||||||
* gst/gstregistrybinary.h:
|
* 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>
|
2007-01-13 Andy Wingo <wingo@pobox.com>
|
||||||
|
|
||||||
|
|
|
@ -213,7 +213,7 @@ _gst_tag_initialize (void)
|
||||||
_("image"), _("image related to this stream"), gst_tag_merge_use_first);
|
_("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,
|
gst_tag_register (GST_TAG_PREVIEW_IMAGE, GST_TAG_FLAG_META, GST_TYPE_BUFFER,
|
||||||
_("preview image"), _("preview image related to this stream"), NULL);
|
_("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);
|
_("beats per minute"), _("number of beats per minute in audio"), NULL);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue