--
You received this message because you are subscribed to the Google Groups "NSManchester - Cocoa Developers Meetup" group.
To post to this group, send email to nsmanc...@googlegroups.com.
To unsubscribe from this group, send email to nsmanchester...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nsmanchester?hl=en.
AudioStreamBasicDescription asbd;
asbd.mSampleRate = 8000;
asbd.mFormatID = kAudioFormatAppleIMA4;
asbd.mFormatFlags = 0;//kLinearPCMFormatFlagIsSignedInteger;
asbd.mBytesPerPacket = 656;
asbd.mFramesPerPacket = 328;
asbd.mBytesPerFrame = 2;
asbd.mChannelsPerFrame = 1;
asbd.mBitsPerChannel = 16;
asbd.mReserved = 0;
The numbers appear correct to me but then I don't really know what I'm doing, any suggestions appreciated :-)
John
AudioStreamBasicDescription asbd;
asbd.mSampleRate = 8000;
asbd.mFormatID = kAudioFormatDVIIntelIMA;
asbd.mFormatFlags = 0;//kLinearPCMFormatFlagIsSignedInteger;
asbd.mBytesPerPacket = 2;
asbd.mFramesPerPacket = 1;
asbd.mBytesPerFrame = 2;
asbd.mChannelsPerFrame = 1;
asbd.mBitsPerChannel = 16;
asbd.mReserved = 0;
AudioStreamBasicDescription asbd;
asbd.mSampleRate = 8000;
asbd.mFormatID = kAudioFormatDVIIntelIMA;
asbd.mFormatFlags = 0;//kLinearPCMFormatFlagIsSignedInteger;
asbd.mBytesPerPacket = 656;
asbd.mFramesPerPacket = 328;
asbd.mBytesPerFrame = 2;
asbd.mChannelsPerFrame = 1;
asbd.mBitsPerChannel = 16;
asbd.mReserved = 0;
It's still not quite there but I've got other work I need to get done now so will have to put this down for a bit.
John