diff options
author | Max Kellermann <max@duempel.org> | 2012-07-10 01:53:46 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-07-10 01:53:46 +0200 |
commit | 5385d1fa80b08752bd99d14bd826438310e10b3e (patch) | |
tree | 66e583c3309f3393d98017f18f50333d0c4f71eb | |
parent | dbee2f199640ec296b049801fe79e35c4b3424f6 (diff) | |
download | mpd-5385d1fa80b08752bd99d14bd826438310e10b3e.tar.gz mpd-5385d1fa80b08752bd99d14bd826438310e10b3e.tar.xz mpd-5385d1fa80b08752bd99d14bd826438310e10b3e.zip |
aiff: support the AIFC format
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | src/aiff.c | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,8 @@ ver 0.17.1 (2012/??/??) * protocol: - require appropriate permissions for searchadd{,pl} +* tags: + - aiff: support the AIFC format * output: - fix noisy playback with conversion and software volume diff --git a/src/aiff.c b/src/aiff.c index 06de9ffe7..f66f29e2d 100644 --- a/src/aiff.c +++ b/src/aiff.c @@ -73,7 +73,8 @@ aiff_seek_id3(FILE *file) if (size != 1 || memcmp(header.id, "FORM", 4) != 0 || GUINT32_FROM_BE(header.size) > (uint32_t)st.st_size || - memcmp(header.format, "AIFF", 4) != 0) + (memcmp(header.format, "AIFF", 4) != 0 && + memcmp(header.format, "AIFC", 4) != 0)) /* not a AIFF file */ return 0; |