aboutsummaryrefslogtreecommitdiff
path: root/src/riff.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-03-02 18:12:44 +0100
committerMax Kellermann <max@duempel.org>2009-03-02 18:12:44 +0100
commit2f438e5d238840b96414079d17f1b56ab1fba9a5 (patch)
treebc7f4453279deb3121025b8f546dc4fd0181cff8 /src/riff.c
parent336f624277933a34a049d1d5e88f1357bf8048d8 (diff)
tag_id3: parse ID3 tags in AIFF files
Added a small AIFF parser library, code copied from the RIFF parser (big-endian integers). Look for an "ID3" chunk, and let libid3tag parse it.
Diffstat (limited to 'src/riff.c')
-rw-r--r--src/riff.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/riff.c b/src/riff.c
index 9af0a212..4be96ac0 100644
--- a/src/riff.c
+++ b/src/riff.c
@@ -86,8 +86,6 @@ riff_seek_id3(FILE *file)
/* pad byte */
++size;
- g_debug("chunk='%.4s' size=%zu\n", chunk.id, size);
-
if (memcmp(chunk.id, "id3 ", 4) == 0)
/* found it! */
return size;