From 36f32d3f9357fb37d5fdc5c5773f1e7d62ca6755 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 1 Aug 2012 17:46:46 +0100 Subject: [PATCH] tag: fix month/day extraction in ID3v2 tags We were passing month/day in the wrong order to gst_date_time_new_ymd(). --- gst-libs/gst/tag/id3v2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/tag/id3v2.c b/gst-libs/gst/tag/id3v2.c index eb27ec9..b353646 100644 --- a/gst-libs/gst/tag/id3v2.c +++ b/gst-libs/gst/tag/id3v2.c @@ -607,7 +607,7 @@ id3v2_frames_to_tag_list (ID3TagsWorking * work, guint size) /* GstDateTime is immutable, so create new one and replace old one */ dt2 = gst_date_time_new_ymd (gst_date_time_get_year (dt), - work->pending_day, work->pending_month); + work->pending_month, work->pending_day); gst_tag_list_add (work->tags, GST_TAG_MERGE_REPLACE, GST_TAG_DATE_TIME, dt2, NULL); gst_date_time_unref (dt2); -- 2.7.4