1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

iOS Audio: Remove buffer size assertion

This assertion is no longer relevant now that the AudioDeviceManager
enforces the maximum buffer size.
This commit is contained in:
reuk 2025-05-20 16:05:26 +01:00
parent b4f71ab6db
commit 457de394e0
No known key found for this signature in database

View file

@ -1071,10 +1071,6 @@ struct iOSAudioIODevice::Pimpl final : public AsyncUpdater
OSStatus process (AudioUnitRenderActionFlags* flags, const AudioTimeStamp* time,
const UInt32 numFrames, AudioBufferList* data)
{
// If you hit this assertion please contact the JUCE team and let us
// know the iOS version/device and audio device that you're using
jassert (bufferSize == (int) numFrames);
OSStatus err = noErr;
recordXruns (time, numFrames);