summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2003-12-18 04:28:43 +0000
committerColin Walters <walters@verbum.org>2003-12-18 04:28:43 +0000
commit6b9383ce6c8c546d81b67c1513c004beb1946f31 (patch)
treed00031b98e0608e036e06e7565023e19b9b20cf5
parentc231ca28a832061bdeb78175127a7c6995018f34 (diff)
Fix type of GST_TAG_TRACK_COUNT.
Original commit message from CVS: Fix type of GST_TAG_TRACK_COUNT.
-rw-r--r--gst/gsttag.c2
-rw-r--r--gst/gsttaglist.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/gst/gsttag.c b/gst/gsttag.c
index 558939b039..d7e2cc773a 100644
--- a/gst/gsttag.c
+++ b/gst/gsttag.c
@@ -91,7 +91,7 @@ _gst_tag_initialize (void)
_("track number inside a collection"),
gst_tag_merge_use_first);
gst_tag_register (GST_TAG_TRACK_COUNT,
- G_TYPE_STRING,
+ G_TYPE_UINT,
_("track count"),
_("count of tracks inside collection this track belongs to"),
gst_tag_merge_use_first);
diff --git a/gst/gsttaglist.c b/gst/gsttaglist.c
index 558939b039..d7e2cc773a 100644
--- a/gst/gsttaglist.c
+++ b/gst/gsttaglist.c
@@ -91,7 +91,7 @@ _gst_tag_initialize (void)
_("track number inside a collection"),
gst_tag_merge_use_first);
gst_tag_register (GST_TAG_TRACK_COUNT,
- G_TYPE_STRING,
+ G_TYPE_UINT,
_("track count"),
_("count of tracks inside collection this track belongs to"),
gst_tag_merge_use_first);