March 2010
3 posts
1 tag
SoundGrid 3 screenshots
As I promised on Twitter, here are screenshots of upcoming SoundGrid 3. No comments at this moment, only pictures. And some things still need to be done, mostly related to web-based management console. Planning to finish and release next week.
2 tags
iPhone VFP and memory performance
I have array of floats for output buffer and array of shorts for input. I need to add values from input buffer to values in output buffer. Using VFP unit the code looks as follows:
int temp[8];
while (numVectors--)
{
temp[0] = bin[0];
temp[1] = bin[1];
temp[2] = bin[2];
temp[3] = bin[3];
temp[4] = bin[4];
temp[5] = bin[5];
temp[6] = bin[6];
temp[7] = bin[7];
bin+=8;
...