I use Audio Queue Services in my application. When allocating the buffer, I set the buffer size to 30000 samples:
AudioQueueAllocateBuffer(mQueue, 30000, &mBuffers[i]);
But the subsequent calls of the callback are made with the following inNumberPacketDescriptions:
30000
30000
30000
26928
30000
30000
They aren't always equal to 30000. Why?
Record format configuration (using CAStreamBasicDescription):
mRecordFormat.mSampleRate = kSampleRate;
mRecordFormat.mChannelsPerFrame = 1;
mRecordFormat.mFormatID = kAudioFormatLinearPCM;
mRecordFormat.mFormatFlags = kLinearPCMFormatFlagIsSignedInteger | kLinearPCMFormatFlagIsPacked;
mRecordFormat.mBitsPerChannel = 16;
mRecordFormat.mBytesPerPacket = mRecordFormat.mBytesPerFrame = (mRecordFormat.mBitsPerChannel / 8) * mRecordFormat.mChannelsPerFrame;
mRecordFormat.mFramesPerPacket = 1;
3 buffers are used.
AudioStreamBasicDescription? – Anurag Jun 11 '11 at 20:38