summaryrefslogtreecommitdiffstats
path: root/multimedia/gstreamer-plugins/files/patch-ext_mad_gstid3tag.c
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-02-07 06:06:08 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2004-02-07 06:06:08 +0800
commit4a604888e145dfe25aeeb9ccf162584a4ee1d1dc (patch)
tree4083c21e1a0af9f2cde05cb5339e776f98394784 /multimedia/gstreamer-plugins/files/patch-ext_mad_gstid3tag.c
parent4b822c4159d54c13c95ec4ad884e668e1718bda5 (diff)
downloadmarcuscom-ports-4a604888e145dfe25aeeb9ccf162584a4ee1d1dc.tar
marcuscom-ports-4a604888e145dfe25aeeb9ccf162584a4ee1d1dc.tar.gz
marcuscom-ports-4a604888e145dfe25aeeb9ccf162584a4ee1d1dc.tar.bz2
marcuscom-ports-4a604888e145dfe25aeeb9ccf162584a4ee1d1dc.tar.lz
marcuscom-ports-4a604888e145dfe25aeeb9ccf162584a4ee1d1dc.tar.xz
marcuscom-ports-4a604888e145dfe25aeeb9ccf162584a4ee1d1dc.tar.zst
marcuscom-ports-4a604888e145dfe25aeeb9ccf162584a4ee1d1dc.zip
Update to 0.7.4.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@1785 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'multimedia/gstreamer-plugins/files/patch-ext_mad_gstid3tag.c')
-rw-r--r--multimedia/gstreamer-plugins/files/patch-ext_mad_gstid3tag.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/multimedia/gstreamer-plugins/files/patch-ext_mad_gstid3tag.c b/multimedia/gstreamer-plugins/files/patch-ext_mad_gstid3tag.c
deleted file mode 100644
index 288478b29..000000000
--- a/multimedia/gstreamer-plugins/files/patch-ext_mad_gstid3tag.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- ext/mad/gstid3tag.c.orig Fri Dec 19 15:09:09 2003
-+++ ext/mad/gstid3tag.c Fri Dec 19 15:09:33 2003
-@@ -474,8 +474,9 @@
- tmp = strtoul (utf8, &check, 10);
- if (*check != '\0') break;
- if (strcmp (tag_name, GST_TAG_DATE) == 0) {
-+ GDate *d;
- if (tmp == 0) break;
-- GDate *d = g_date_new_dmy (1, 1, tmp);
-+ d = g_date_new_dmy (1, 1, tmp);
- tmp = g_date_get_julian (d);
- g_date_free (d);
- }