changeset 2564:5b9f0dc2c034 trunk

[svn] - add documentation wrt why we ship our own libid3tag and why it shouldn't be patched out.
author nenolod
date Sat, 24 Feb 2007 07:45:31 -0800
parents bdd0ee5888e0
children 36a652d03166
files ChangeLog src/audacious/build_stamp.c src/libid3tag/README.audacious
diffstat 3 files changed, 20 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Feb 24 07:41:14 2007 -0800
+++ b/ChangeLog	Sat Feb 24 07:45:31 2007 -0800
@@ -1,3 +1,13 @@
+2007-02-24 15:41:14 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
+  revision [4136]
+  - add support for opening id3 tags from a live vfs handle.
+  Patch by Christian Birchinger (joker).
+  
+  trunk/src/libid3tag/file.c   |   29 +++++++++++++++++++++++++++++
+  trunk/src/libid3tag/id3tag.h |    3 +++
+  2 files changed, 32 insertions(+)
+
+
 2007-02-24 14:01:39 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
   revision [4134]
   - add reference-counting to VFS and add new function, vfs_dup() to 
--- a/src/audacious/build_stamp.c	Sat Feb 24 07:41:14 2007 -0800
+++ b/src/audacious/build_stamp.c	Sat Feb 24 07:45:31 2007 -0800
@@ -1,2 +1,2 @@
 #include <glib.h>
-const gchar *svn_stamp = "20070224-4134";
+const gchar *svn_stamp = "20070224-4136";
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/libid3tag/README.audacious	Sat Feb 24 07:45:31 2007 -0800
@@ -0,0 +1,9 @@
+The sources in libid3tag are heavily modified by the Audacious team for 
+use in Audacious. If you are a package maintainer, please do not patch 
+out this library as Audacious needs the modifications made here.
+
+The modifications are as follows:
+  - use the Audacious VFS subsystem for stream I/O instead of libc
+  - add support for opening an id3 tagged file from a live VFS handle.
+  - some minor portability improvements
+