Skip to content

Commit

Permalink
AudioUnitManager: Initialize isInstantiated
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Nov 26, 2024
1 parent bff6174 commit e6fd1fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/effects/backends/audiounit/audiounitmanager.mm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@

AudioUnitManager::AudioUnitManager(AVAudioUnitComponent* _Nullable component,
AudioUnitInstantiationType instantiationType)
: m_name(QString::fromNSString([component name])) {
: m_name(QString::fromNSString([component name])),
m_isInstantiated(false) {
// NOTE: The component can be null if the lookup failed in
// `AudioUnitBackend::createProcessor`, in which case the effect simply acts
// as an identity function on the audio. Same applies when
Expand Down

0 comments on commit e6fd1fc

Please sign in to comment.