Browse Source

Changed the way the unique AAX plug-in id is generated to future proof it for any future channel formats Avid decide to add to AAX

tags/2021-05-28
hogliux 9 years ago
parent
commit
eba76a8487
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_audio_processors/processors/juce_AudioProcessor.cpp

+ 1
- 1
modules/juce_audio_processors/processors/juce_AudioProcessor.cpp View File

@@ -1335,7 +1335,7 @@ int32 AudioProcessor::getAAXPluginIDForMainBusConfig (const AudioChannelSet& mai
jassertfalse;
}
uniqueFormatId = (uniqueFormatId * 16) + aaxFormatIndex;
uniqueFormatId = (uniqueFormatId << 8) | aaxFormatIndex;
}
return (idForAudioSuite ? 0x6a796161 /* 'jyaa' */ : 0x6a636161 /* 'jcaa' */) + uniqueFormatId;


Loading…
Cancel
Save