Apple software often creates WAVE files with a non-standard (but legal) "FLLR" subchunk after the "fmt " subchunk and before the "data" subchunk. I assume "FLLR" stands for "filler", and I assume the purpose of the subchunk to enable some sort of data alignment optimization. The subchunk is usually about 4000 bytes long, but its actual length can vary depending on the length of the data preceding it.
Adding arbitrary subchunks to WAVE files is generally considered legal because WAVE is a subset of RIFF, and the common practice in RIFF file processing is to ignore chunks and subchunks which have an unrecognized identifier. The identifier "FLLR" is "non-standard" and so should be ignored by any software which encounters it.
There is a fair amount of software out there that treats the WAVE format much more rigidly than it ought to, and I suspect the library you're using may be one of those pieces of software. For example, I have seen software that assumes that the audio bytes always begin at offset 44 -- this is an incorrect assumption.
In fact, finding the audio bytes in a WAVE file must be done by finding the location and size of the "data" subchunk within the RIFF; this is the correct way to locate the audio bytes within a WAVE file.
Reading WAVE files properly must really begin as an exercise in locating and identifying RIFF subchunks. RIFF subchunks have an 8-byte header: 4 bytes for an identifier/name field which is traditionally filled with human-readable ASCII characters (e.g. "fmt "), and a 4-byte little-endian unsigned integer specifying the number of bytes in the subchunk's data portion. The subchunk's data portion follows immediately after this 8-byte header.
The WAVE file format reserves certain subchunk identifiers (or "names") as being meaningful to the WAVE format. There are a minimum of two subchunks that must always appear in every WAVE file:
"fmt " - contains the basic information about the audio's format: sample rate, bit depth, etc.
"data" - subchunk contains the actual audio bytes.
"fact" is the next most common subchunk identifier. It is only valid in WAVE files that use a compressed codec, such as μ-law (as opposed to PCM, which is not compressed). See http://www.sonicspot.com/guide/wavefiles.html for more information about some of the various subchunk identifiers in use today in the wild.
From a RIFF perspective, subchunks need not appear in any particular order in the file, or at any particular fixed offset. In practice however, almost all software expects the "fmt " subchunk to be the first subchunk. This is a practical concession, because the "fmt " subchunk contains the primary descriptor for the audio format contained in the WAVE. (The convention of always placing "fmt " first facilitates streaming playback of WAVE files, for example). If the WAVE file uses a compressed format, such as μ-law, it is usually assumed that the "fact" subchunk will appear directly after "fmt ".
After the format-specifying chunks are out of the way, assumptions about the location, ordering, and naming of subchunks should be abandoned. At this point, the software should locate expected subchunks by name only (e.g. "data"). If subchunks are encountered that have unrecognized names (e.g. "FLLR"), those subchunks should simply be skipped over and ignored.
What Apple has done with the "FLLR" subchunk is slightly unusual, but by no means incorrect. I suspect that the library you are using is simply unprepared to deal with the presence of the "FLLR" subchunk. I would consider this a defect in the library. The mistake the library authors have made is probably something like:
They may be expecting the "data" subchunk to appear within the first N bytes of the beginning of the file, where N is something less than ~4kB. They may give up looking if they have to look too far. The Apple "FLLR" subchunk pushes the "data" subchunk to a position >~4kB into the file, which may be farther than the code in the library is willing to look.
They may be expecting the "data" subchunk to have a specific ordinal position or offset within the RIFF. Perhaps they expect "data" to appear immediately after "fmt ". This is an incorrect way to process a RIFF file, though. The ordinal position and/or offset position of the "data" subchunk should definitely not be assumed to be fixed. The Apple "FLLR" subchunk appears between "fmt " and "data" subchunks. The "FLLR" subchunk should be skipped and ignored, as it has a non-standard, unrecognized name.
od -c. – Ignacio Vazquez-Abrams Jun 8 '11 at 20:15code0000000 R I F F $ \0 \0 \0 W A V E f m t 0000020 020 \0 \0 \0 001 \0 001 \0 \0 020 \0 \0 \0 \0 \0 0000040 002 \0 020 \0 d a t a \0 \0 \0 \0 0000054 – ch3rryc0ke Jun 8 '11 at 20:25