Mercurial > audlegacy-plugins
changeset 659:d1a03def0021 trunk
[svn] - disable broken APETag support for now, can cause crashes
author | nenolod |
---|---|
date | Fri, 16 Feb 2007 19:12:45 -0800 |
parents | a9199ee8e5c0 |
children | 9b4e01053d5c |
files | ChangeLog src/musepack/libmpc.cxx |
diffstat | 2 files changed, 13 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Thu Feb 15 23:36:36 2007 -0800 +++ b/ChangeLog Fri Feb 16 19:12:45 2007 -0800 @@ -1,3 +1,14 @@ +2007-02-16 07:36:36 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [1402] + - disk writer: do effects processing. + - flac113 plugin: pass a valid InputPlayback reference to the thread + constructor. closes #797 for real. + + trunk/src/disk_writer/disk_writer.c | 32 ++++++++++++++++++++++++++++++++ + trunk/src/flac113/plugin.c | 2 +- + 2 files changed, 33 insertions(+), 1 deletion(-) + + 2007-02-16 03:28:20 +0000 Yoshiki Yazawa <yaz@cc.rim.or.jp> revision [1400] - do not unescape streaming uri.
--- a/src/musepack/libmpc.cxx Thu Feb 15 23:36:36 2007 -0800 +++ b/src/musepack/libmpc.cxx Fri Feb 16 19:12:45 2007 -0800 @@ -443,6 +443,7 @@ REMOVE_NONEXISTANT_TAG(tags.comment); tags.year = poTag->year(); tags.track = poTag->track(); +#if 0 TagLib::APE::Tag* ape = oFile.APETag(false); if(ape) { @@ -456,6 +457,7 @@ tags.date = g_strdup_printf("%d", tags.year); } } +#endif return tags; }