We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I found maybe there is a mistake in this line. (nframes/dev->_micSampleSize) should be (nframes * dev->_micSampleSize)
(nframes/dev->_micSampleSize)
(nframes * dev->_micSampleSize)
mumblekit/src/MKVoiceProcessingDevice.m
Line 56 in 6ec99df
And as figured out in the follow line, AudioUnitRender will change the value of AudioBufferList's mDataByteSize (I verified this in a real iphone 4, not on simulator), so we need to keep the mDataByteSize and restore it after AudioUnitRender. https://github.com/openframeworks/openFrameworks/blob/076daef1236dabadde935b8276120650b5f29cda/addons/ofxiOS/src/sound/SoundInputStream.m#L51
The text was updated successfully, but these errors were encountered:
I faced the same issue, here is the pull request: #44
Sorry, something went wrong.
No branches or pull requests
Hi, I found maybe there is a mistake in this line.
(nframes/dev->_micSampleSize)
should be(nframes * dev->_micSampleSize)
mumblekit/src/MKVoiceProcessingDevice.m
Line 56 in 6ec99df
And as figured out in the follow line, AudioUnitRender will change the value of AudioBufferList's mDataByteSize (I verified this in a real iphone 4, not on simulator), so we need to keep the mDataByteSize and restore it after AudioUnitRender.
https://github.com/openframeworks/openFrameworks/blob/076daef1236dabadde935b8276120650b5f29cda/addons/ofxiOS/src/sound/SoundInputStream.m#L51
The text was updated successfully, but these errors were encountered: