Created
November 17, 2010 19:56
-
-
Save eqdw/703953 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct AudioBuffer{ | |
UInt32 mNUmberChannels; | |
UInt32 mDataByteSize; | |
void * mData; | |
} | |
struct AudioBufferList{ | |
UInt32 mNumberBuffers; | |
AudioBuffer mBuffers[1]; //this is a variable length array of Buffer elementsa | |
} | |
/* | |
* Correct me if I'm wrong, but, um, no it's not? | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment