I’m starting using WMA reader and I noticed that for instance, if you try to read 65536 samples of a 6 channels WMA file, the read will never succeed (endless loop as bufferStart gets superior to bufferEnd and not every samples have been read), as the read function assumes that the buffer size should be a multiple of 2 (number of bytes for 16 bits) x number of channels.
A power of two is quite common for I/O, so I guess it would make sense to do the appropriate re-buffering and then allow something similar to the other AudioFormat readers