From 8588b5aab82469c019c38f1413c568200d8fa073 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 16 Jul 2012 00:05:26 +0100 Subject: [PATCH] spc: extract year as GstDateTime instead of GDate --- ext/spc/gstspc.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ext/spc/gstspc.c b/ext/spc/gstspc.c index e5950c5..2ea4ad8 100644 --- a/ext/spc/gstspc.c +++ b/ext/spc/gstspc.c @@ -491,10 +491,11 @@ spc_setup (GstSpcDec * spc) gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_ALBUM, info->game, NULL); if (info->year) { - GDate *date = g_date_new_dmy (1, 1, info->year); + GstDateTime *dt = gst_date_time_new_y (info->year); - gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_DATE, date, NULL); - g_date_free (date); + gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_DATE_TIME, dt, + NULL); + gst_date_time_unref (dt); } if (info->track) { gst_tag_list_add (taglist, GST_TAG_MERGE_REPLACE, GST_TAG_TRACK_NUMBER, -- 2.7.4