Skip to content

Commit 457de39

Browse files
committed
iOS Audio: Remove buffer size assertion
This assertion is no longer relevant now that the AudioDeviceManager enforces the maximum buffer size.
1 parent b4f71ab commit 457de39

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

modules/juce_audio_devices/native/juce_Audio_ios.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1071,10 +1071,6 @@ struct iOSAudioIODevice::Pimpl final : public AsyncUpdater
10711071
OSStatus process (AudioUnitRenderActionFlags* flags, const AudioTimeStamp* time,
10721072
const UInt32 numFrames, AudioBufferList* data)
10731073
{
1074-
// If you hit this assertion please contact the JUCE team and let us
1075-
// know the iOS version/device and audio device that you're using
1076-
jassert (bufferSize == (int) numFrames);
1077-
10781074
OSStatus err = noErr;
10791075

10801076
recordXruns (time, numFrames);

0 commit comments

Comments
 (0)