Does this make any sense (Apple-documentation)?
- by Paperflyer
Here is a snippet of the official Apple Documentation of AudioBufferList (Core Audio Data Types Reference)
AudioBufferList
Holds a variable length array of AudioBuffer structures.
struct AudioBufferList {
UInt32 mNumberBuffers;
AudioBuffer mBuffers[1];
};
typedef struct AudioBufferList AudioBufferList;
Fields
…