summaryrefslogtreecommitdiffstats
path: root/lib/rbcodec/codecs/aiff.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/codecs/aiff.c')
-rw-r--r--lib/rbcodec/codecs/aiff.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/rbcodec/codecs/aiff.c b/lib/rbcodec/codecs/aiff.c
index 2900ed2ecb..a82ae5f2e2 100644
--- a/lib/rbcodec/codecs/aiff.c
+++ b/lib/rbcodec/codecs/aiff.c
@@ -198,6 +198,10 @@ enum codec_status codec_run(void)
} else if (is_aifc && (memcmp(buf, "FVER", 4)==0)) {
/* Format Version Chunk (AIFC only chunk) */
/* skip this chunk */
+ } else if ( (memcmp(buf, "NAME", 4)==0) || (memcmp(buf, "AUTH", 4)==0)
+ || (memcmp(buf, "ANNO", 4)==0)) {
+ /* Text chunks containing only metadata */
+ /* skip this chunk */
} else {
DEBUGF("unsupported AIFF chunk: '%c%c%c%c', size=%lu\n",
buf[0], buf[1], buf[2], buf[3], (unsigned long)size);