79488897

Date: 2025-03-06 09:52:24
Score: 1
Natty:
Report link

Change

float* result = (float*)&bufferList.mBuffers[0].mData; // the data from microphone is stored in mData. However, your ’result' actually points to the address of mData.

To

float* result = (float*)bufferList.mBuffers[0].mData;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: SCK