mirror of
https://github.com/airwindows/airwindows.git
synced 2026-05-15 14:16:00 -06:00
Signed Infinity2
This commit is contained in:
parent
f6f15f573f
commit
12785bb45d
17 changed files with 4881 additions and 0 deletions
447
plugins/MacSignedAU/Infinity2/Infinity2.cpp
Normal file
447
plugins/MacSignedAU/Infinity2/Infinity2.cpp
Normal file
|
|
@ -0,0 +1,447 @@
|
|||
/*
|
||||
* File: Infinity2.cpp
|
||||
*
|
||||
* Version: 1.0
|
||||
*
|
||||
* Created: 4/26/21
|
||||
*
|
||||
* Copyright: Copyright © 2021 Airwindows, All Rights Reserved
|
||||
*
|
||||
* Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. ("Apple") in
|
||||
* consideration of your agreement to the following terms, and your use, installation, modification
|
||||
* or redistribution of this Apple software constitutes acceptance of these terms. If you do
|
||||
* not agree with these terms, please do not use, install, modify or redistribute this Apple
|
||||
* software.
|
||||
*
|
||||
* In consideration of your agreement to abide by the following terms, and subject to these terms,
|
||||
* Apple grants you a personal, non-exclusive license, under Apple's copyrights in this
|
||||
* original Apple software (the "Apple Software"), to use, reproduce, modify and redistribute the
|
||||
* Apple Software, with or without modifications, in source and/or binary forms; provided that if you
|
||||
* redistribute the Apple Software in its entirety and without modifications, you must retain this
|
||||
* notice and the following text and disclaimers in all such redistributions of the Apple Software.
|
||||
* Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to
|
||||
* endorse or promote products derived from the Apple Software without specific prior written
|
||||
* permission from Apple. Except as expressly stated in this notice, no other rights or
|
||||
* licenses, express or implied, are granted by Apple herein, including but not limited to any
|
||||
* patent rights that may be infringed by your derivative works or by other works in which the
|
||||
* Apple Software may be incorporated.
|
||||
*
|
||||
* The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR
|
||||
* IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY
|
||||
* AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE
|
||||
* OR IN COMBINATION WITH YOUR PRODUCTS.
|
||||
*
|
||||
* IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE,
|
||||
* REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER
|
||||
* UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN
|
||||
* IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
*/
|
||||
/*=============================================================================
|
||||
Infinity2.cpp
|
||||
|
||||
=============================================================================*/
|
||||
#include "Infinity2.h"
|
||||
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
AUDIOCOMPONENT_ENTRY(AUBaseFactory, Infinity2)
|
||||
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
// Infinity2::Infinity2
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Infinity2::Infinity2(AudioUnit component)
|
||||
: AUEffectBase(component)
|
||||
{
|
||||
CreateElements();
|
||||
Globals()->UseIndexedParameters(kNumberOfParameters);
|
||||
SetParameter(kParam_One, kDefaultValue_ParamOne );
|
||||
SetParameter(kParam_Two, kDefaultValue_ParamTwo );
|
||||
SetParameter(kParam_Three, kDefaultValue_ParamThree );
|
||||
SetParameter(kParam_Four, kDefaultValue_ParamFour );
|
||||
SetParameter(kParam_Five, kDefaultValue_ParamFive );
|
||||
SetParameter(kParam_Six, kDefaultValue_ParamSix );
|
||||
|
||||
#if AU_DEBUG_DISPATCHER
|
||||
mDebugDispatcher = new AUDebugDispatcher (this);
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
// Infinity2::GetParameterValueStrings
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
ComponentResult Infinity2::GetParameterValueStrings(AudioUnitScope inScope,
|
||||
AudioUnitParameterID inParameterID,
|
||||
CFArrayRef * outStrings)
|
||||
{
|
||||
|
||||
return kAudioUnitErr_InvalidProperty;
|
||||
}
|
||||
|
||||
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
// Infinity2::GetParameterInfo
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
ComponentResult Infinity2::GetParameterInfo(AudioUnitScope inScope,
|
||||
AudioUnitParameterID inParameterID,
|
||||
AudioUnitParameterInfo &outParameterInfo )
|
||||
{
|
||||
ComponentResult result = noErr;
|
||||
|
||||
outParameterInfo.flags = kAudioUnitParameterFlag_IsWritable
|
||||
| kAudioUnitParameterFlag_IsReadable;
|
||||
|
||||
if (inScope == kAudioUnitScope_Global) {
|
||||
switch(inParameterID)
|
||||
{
|
||||
case kParam_One:
|
||||
AUBase::FillInParameterName (outParameterInfo, kParameterOneName, false);
|
||||
outParameterInfo.unit = kAudioUnitParameterUnit_Generic;
|
||||
outParameterInfo.minValue = 0.0;
|
||||
outParameterInfo.maxValue = 1.0;
|
||||
outParameterInfo.defaultValue = kDefaultValue_ParamOne;
|
||||
break;
|
||||
case kParam_Two:
|
||||
AUBase::FillInParameterName (outParameterInfo, kParameterTwoName, false);
|
||||
outParameterInfo.unit = kAudioUnitParameterUnit_Generic;
|
||||
outParameterInfo.minValue = 0.0;
|
||||
outParameterInfo.maxValue = 1.0;
|
||||
outParameterInfo.defaultValue = kDefaultValue_ParamTwo;
|
||||
break;
|
||||
case kParam_Three:
|
||||
AUBase::FillInParameterName (outParameterInfo, kParameterThreeName, false);
|
||||
outParameterInfo.unit = kAudioUnitParameterUnit_Generic;
|
||||
outParameterInfo.minValue = 0.0;
|
||||
outParameterInfo.maxValue = 1.0;
|
||||
outParameterInfo.defaultValue = kDefaultValue_ParamThree;
|
||||
break;
|
||||
case kParam_Four:
|
||||
AUBase::FillInParameterName (outParameterInfo, kParameterFourName, false);
|
||||
outParameterInfo.unit = kAudioUnitParameterUnit_Generic;
|
||||
outParameterInfo.minValue = 0.0;
|
||||
outParameterInfo.maxValue = 1.0;
|
||||
outParameterInfo.defaultValue = kDefaultValue_ParamFour;
|
||||
break;
|
||||
case kParam_Five:
|
||||
AUBase::FillInParameterName (outParameterInfo, kParameterFiveName, false);
|
||||
outParameterInfo.unit = kAudioUnitParameterUnit_Generic;
|
||||
outParameterInfo.minValue = 0.0;
|
||||
outParameterInfo.maxValue = 1.0;
|
||||
outParameterInfo.defaultValue = kDefaultValue_ParamFive;
|
||||
break;
|
||||
case kParam_Six:
|
||||
AUBase::FillInParameterName (outParameterInfo, kParameterSixName, false);
|
||||
outParameterInfo.unit = kAudioUnitParameterUnit_Generic;
|
||||
outParameterInfo.minValue = 0.0;
|
||||
outParameterInfo.maxValue = 1.0;
|
||||
outParameterInfo.defaultValue = kDefaultValue_ParamSix;
|
||||
break;
|
||||
default:
|
||||
result = kAudioUnitErr_InvalidParameter;
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
result = kAudioUnitErr_InvalidParameter;
|
||||
}
|
||||
|
||||
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
// Infinity2::GetPropertyInfo
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
ComponentResult Infinity2::GetPropertyInfo (AudioUnitPropertyID inID,
|
||||
AudioUnitScope inScope,
|
||||
AudioUnitElement inElement,
|
||||
UInt32 & outDataSize,
|
||||
Boolean & outWritable)
|
||||
{
|
||||
return AUEffectBase::GetPropertyInfo (inID, inScope, inElement, outDataSize, outWritable);
|
||||
}
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
// Infinity2::GetProperty
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
ComponentResult Infinity2::GetProperty( AudioUnitPropertyID inID,
|
||||
AudioUnitScope inScope,
|
||||
AudioUnitElement inElement,
|
||||
void * outData )
|
||||
{
|
||||
return AUEffectBase::GetProperty (inID, inScope, inElement, outData);
|
||||
}
|
||||
|
||||
// Infinity2::Initialize
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
ComponentResult Infinity2::Initialize()
|
||||
{
|
||||
ComponentResult result = AUEffectBase::Initialize();
|
||||
if (result == noErr)
|
||||
Reset(kAudioUnitScope_Global, 0);
|
||||
return result;
|
||||
}
|
||||
|
||||
#pragma mark ____Infinity2EffectKernel
|
||||
|
||||
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
// Infinity2::Infinity2Kernel::Reset()
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
void Infinity2::Infinity2Kernel::Reset()
|
||||
{
|
||||
for (int x = 0; x < 11; x++) {biquadA[x] = 0.0;biquadB[x] = 0.0;biquadC[x] = 0.0;}
|
||||
|
||||
feedbackA = 0.0;
|
||||
feedbackB = 0.0;
|
||||
feedbackC = 0.0;
|
||||
feedbackD = 0.0;
|
||||
feedbackE = 0.0;
|
||||
feedbackF = 0.0;
|
||||
feedbackG = 0.0;
|
||||
feedbackH = 0.0;
|
||||
|
||||
int count;
|
||||
for(count = 0; count < 8110; count++) {aA[count] = 0.0;}
|
||||
for(count = 0; count < 7510; count++) {aB[count] = 0.0;}
|
||||
for(count = 0; count < 7310; count++) {aC[count] = 0.0;}
|
||||
for(count = 0; count < 6910; count++) {aD[count] = 0.0;}
|
||||
for(count = 0; count < 6310; count++) {aE[count] = 0.0;}
|
||||
for(count = 0; count < 6110; count++) {aF[count] = 0.0;}
|
||||
for(count = 0; count < 5510; count++) {aG[count] = 0.0;}
|
||||
for(count = 0; count < 4910; count++) {aH[count] = 0.0;}
|
||||
//maximum value needed will be delay * 100, plus 206 (absolute max vibrato depth)
|
||||
for(count = 0; count < 4510; count++) {aI[count] = 0.0;}
|
||||
for(count = 0; count < 4310; count++) {aJ[count] = 0.0;}
|
||||
for(count = 0; count < 3910; count++) {aK[count] = 0.0;}
|
||||
for(count = 0; count < 3310; count++) {aL[count] = 0.0;}
|
||||
|
||||
countA = 1; delayA = 79;
|
||||
countB = 1; delayB = 73;
|
||||
countC = 1; delayC = 71;
|
||||
countD = 1; delayD = 67;
|
||||
countE = 1; delayE = 61;
|
||||
countF = 1; delayF = 59;
|
||||
countG = 1; delayG = 53;
|
||||
countH = 1; delayH = 47;
|
||||
//the householder matrices
|
||||
countI = 1; delayI = 43;
|
||||
countJ = 1; delayJ = 41;
|
||||
countK = 1; delayK = 37;
|
||||
countL = 1; delayL = 31;
|
||||
//the allpasses
|
||||
|
||||
fpd = 1.0; while (fpd < 16386) fpd = rand()*UINT32_MAX;
|
||||
}
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
// Infinity2::Infinity2Kernel::Process
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
void Infinity2::Infinity2Kernel::Process( const Float32 *inSourceP,
|
||||
Float32 *inDestP,
|
||||
UInt32 inFramesToProcess,
|
||||
UInt32 inNumChannels,
|
||||
bool &ioSilence )
|
||||
{
|
||||
UInt32 nSampleFrames = inFramesToProcess;
|
||||
const Float32 *sourceP = inSourceP;
|
||||
Float32 *destP = inDestP;
|
||||
|
||||
biquadC[0] = biquadB[0] = biquadA[0] = ((pow(GetParameter( kParam_One ),2)*9900.0)+100.0) / GetSampleRate();
|
||||
biquadA[1] = 0.618033988749894848204586;
|
||||
biquadB[1] = (GetParameter( kParam_One )*0.5)+0.118033988749894848204586;
|
||||
biquadC[1] = 0.5;
|
||||
|
||||
double K = tan(M_PI * biquadA[0]); //lowpass
|
||||
double norm = 1.0 / (1.0 + K / biquadA[1] + K * K);
|
||||
biquadA[2] = K * K * norm;
|
||||
biquadA[3] = 2.0 * biquadA[2];
|
||||
biquadA[4] = biquadA[2];
|
||||
biquadA[5] = 2.0 * (K * K - 1.0) * norm;
|
||||
biquadA[6] = (1.0 - K / biquadA[1] + K * K) * norm;
|
||||
|
||||
K = tan(M_PI * biquadA[0]);
|
||||
norm = 1.0 / (1.0 + K / biquadB[1] + K * K);
|
||||
biquadB[2] = K * K * norm;
|
||||
biquadB[3] = 2.0 * biquadB[2];
|
||||
biquadB[4] = biquadB[2];
|
||||
biquadB[5] = 2.0 * (K * K - 1.0) * norm;
|
||||
biquadB[6] = (1.0 - K / biquadB[1] + K * K) * norm;
|
||||
|
||||
K = tan(M_PI * biquadC[0]);
|
||||
norm = 1.0 / (1.0 + K / biquadC[1] + K * K);
|
||||
biquadC[2] = K * K * norm;
|
||||
biquadC[3] = 2.0 * biquadC[2];
|
||||
biquadC[4] = biquadC[2];
|
||||
biquadC[5] = 2.0 * (K * K - 1.0) * norm;
|
||||
biquadC[6] = (1.0 - K / biquadC[1] + K * K) * norm;
|
||||
|
||||
Float64 size = (pow(GetParameter( kParam_Two ),2)*99.0)+1.0;
|
||||
Float64 damping = pow(GetParameter( kParam_Three ),2)*0.5;
|
||||
Float64 rawPass = GetParameter( kParam_Four );
|
||||
Float64 feedback = 1.0-(pow(1.0-GetParameter( kParam_Five ),4));
|
||||
Float64 wet = GetParameter( kParam_Six );
|
||||
|
||||
delayA = 79*size;
|
||||
delayB = 73*size;
|
||||
delayC = 71*size;
|
||||
delayD = 67*size;
|
||||
delayE = 61*size;
|
||||
delayF = 59*size;
|
||||
delayG = 53*size;
|
||||
delayH = 47*size;
|
||||
|
||||
delayI = 43*size;
|
||||
delayJ = 41*size;
|
||||
delayK = 37*size;
|
||||
delayL = 31*size;
|
||||
|
||||
|
||||
while (nSampleFrames-- > 0) {
|
||||
long double inputSample = *sourceP;
|
||||
if (fabs(inputSample)<1.18e-37) inputSample = fpd * 1.18e-37;
|
||||
double drySample = inputSample;
|
||||
|
||||
long double tempSample = biquadA[2]*inputSample+biquadA[3]*biquadA[7]+biquadA[4]*biquadA[8]-biquadA[5]*biquadA[9]-biquadA[6]*biquadA[10];
|
||||
biquadA[8] = biquadA[7]; biquadA[7] = inputSample; inputSample = tempSample;
|
||||
biquadA[10] = biquadA[9]; biquadA[9] = inputSample; //DF1
|
||||
|
||||
long double allpassI = inputSample;
|
||||
long double allpassJ = inputSample;
|
||||
long double allpassK = inputSample;
|
||||
long double allpassL = inputSample;
|
||||
|
||||
int allpasstemp = countI + 1;
|
||||
if (allpasstemp < 0 || allpasstemp > delayI) {allpasstemp = 0;}
|
||||
allpassI -= aI[allpasstemp]*0.5;
|
||||
aI[countI] = allpassI;
|
||||
allpassI *= 0.5;
|
||||
countI++; if (countI < 0 || countI > delayI) {countI = 0;}
|
||||
allpassI += (aI[countI]);
|
||||
|
||||
allpasstemp = countJ + 1;
|
||||
if (allpasstemp < 0 || allpasstemp > delayJ) {allpasstemp = 0;}
|
||||
allpassJ -= aJ[allpasstemp]*0.5;
|
||||
aJ[countJ] = allpassJ;
|
||||
allpassJ *= 0.5;
|
||||
countJ++; if (countJ < 0 || countJ > delayJ) {countJ = 0;}
|
||||
allpassJ += (aJ[countJ]);
|
||||
|
||||
allpasstemp = countK + 1;
|
||||
if (allpasstemp < 0 || allpasstemp > delayK) {allpasstemp = 0;}
|
||||
allpassK -= aK[allpasstemp]*0.5;
|
||||
aK[countK] = allpassK;
|
||||
allpassK *= 0.5;
|
||||
countK++; if (countK < 0 || countK > delayK) {countK = 0;}
|
||||
allpassK += (aK[countK]);
|
||||
|
||||
allpasstemp = countL + 1;
|
||||
if (allpasstemp < 0 || allpasstemp > delayL) {allpasstemp = 0;}
|
||||
allpassL -= aL[allpasstemp]*0.5;
|
||||
aL[countL] = allpassL;
|
||||
allpassL *= 0.5;
|
||||
countL++; if (countL < 0 || countL > delayL) {countL = 0;}
|
||||
allpassL += (aL[countL]);
|
||||
//the big allpass in front of everything
|
||||
|
||||
if (rawPass !=1.0) {
|
||||
allpassI = (allpassI * rawPass) + (drySample * (1.0-rawPass));
|
||||
allpassJ = (allpassJ * rawPass) + (drySample * (1.0-rawPass));
|
||||
allpassK = (allpassK * rawPass) + (drySample * (1.0-rawPass));
|
||||
allpassL = (allpassL * rawPass) + (drySample * (1.0-rawPass));
|
||||
}
|
||||
|
||||
aA[countA] = allpassI + (feedbackA*feedback);
|
||||
aB[countB] = allpassJ + (feedbackB*feedback);
|
||||
aC[countC] = allpassK + (feedbackC*feedback);
|
||||
aD[countD] = allpassL + (feedbackD*feedback);
|
||||
aE[countE] = allpassI + (feedbackE*feedback);
|
||||
aF[countF] = allpassJ + (feedbackF*feedback);
|
||||
aG[countG] = allpassK + (feedbackG*feedback);
|
||||
aH[countH] = allpassL + (feedbackH*feedback);
|
||||
|
||||
countA++; if (countA < 0 || countA > delayA) {countA = 0;}
|
||||
countB++; if (countB < 0 || countB > delayB) {countB = 0;}
|
||||
countC++; if (countC < 0 || countC > delayC) {countC = 0;}
|
||||
countD++; if (countD < 0 || countD > delayD) {countD = 0;}
|
||||
countE++; if (countE < 0 || countE > delayE) {countE = 0;}
|
||||
countF++; if (countF < 0 || countF > delayF) {countF = 0;}
|
||||
countG++; if (countG < 0 || countG > delayG) {countG = 0;}
|
||||
countH++; if (countH < 0 || countH > delayH) {countH = 0;}
|
||||
//the Householder matrices
|
||||
|
||||
Float64 infiniteA = (aA[countA-((countA > delayA)?delayA+1:0)] * (1-(damping-floor(damping))) );
|
||||
infiniteA += (aA[countA+1-((countA+1 > delayA)?delayA+1:0)] * ((damping-floor(damping))) );
|
||||
Float64 infiniteB = (aB[countB-((countB > delayB)?delayB+1:0)] * (1-(damping-floor(damping))) );
|
||||
infiniteB += (aB[countB+1-((countB+1 > delayB)?delayB+1:0)] * ((damping-floor(damping))) );
|
||||
Float64 infiniteC = (aC[countC-((countC > delayC)?delayC+1:0)] * (1-(damping-floor(damping))) );
|
||||
infiniteC += (aC[countC+1-((countC+1 > delayC)?delayC+1:0)] * ((damping-floor(damping))) );
|
||||
Float64 infiniteD = (aD[countD-((countD > delayD)?delayD+1:0)] * (1-(damping-floor(damping))) );
|
||||
infiniteD += (aD[countD+1-((countD+1 > delayD)?delayD+1:0)] * ((damping-floor(damping))) );
|
||||
|
||||
Float64 infiniteE = (aE[countE-((countE > delayE)?delayE+1:0)] * (1-(damping-floor(damping))) );
|
||||
infiniteE += (aE[countE+1-((countE+1 > delayE)?delayE+1:0)] * ((damping-floor(damping))) );
|
||||
Float64 infiniteF = (aF[countF-((countF > delayF)?delayF+1:0)] * (1-(damping-floor(damping))) );
|
||||
infiniteF += (aF[countF+1-((countF+1 > delayF)?delayF+1:0)] * ((damping-floor(damping))) );
|
||||
Float64 infiniteG = (aG[countG-((countG > delayG)?delayG+1:0)] * (1-(damping-floor(damping))) );
|
||||
infiniteG += (aG[countG+1-((countG+1 > delayG)?delayG+1:0)] * ((damping-floor(damping))) );
|
||||
Float64 infiniteH = (aH[countH-((countH > delayH)?delayH+1:0)] * (1-(damping-floor(damping))) );
|
||||
infiniteH += (aH[countH+1-((countH+1 > delayH)?delayH+1:0)] * ((damping-floor(damping))) );
|
||||
|
||||
Float64 dialBackA = 0.5;
|
||||
Float64 dialBackE = 0.5;
|
||||
Float64 dialBackDry = 0.5;
|
||||
if (fabs(infiniteA)>0.4) dialBackA -= ((fabs(infiniteA)-0.4)*0.2);
|
||||
if (fabs(infiniteE)>0.4) dialBackE -= ((fabs(infiniteE)-0.4)*0.2);
|
||||
if (fabs(drySample)>0.4) dialBackDry -= ((fabs(drySample)-0.4)*0.2);
|
||||
//we're compressing things subtly so we can feed energy in and not overload
|
||||
|
||||
feedbackA = (infiniteA - (infiniteB + infiniteC + infiniteD))*dialBackA;
|
||||
feedbackB = (infiniteB - (infiniteA + infiniteC + infiniteD))*dialBackDry;
|
||||
feedbackC = (infiniteC - (infiniteA + infiniteB + infiniteD))*dialBackDry;
|
||||
feedbackD = (infiniteD - (infiniteA + infiniteB + infiniteC))*dialBackDry;
|
||||
|
||||
feedbackE = (infiniteE - (infiniteF + infiniteG + infiniteH))*dialBackE;
|
||||
feedbackF = (infiniteF - (infiniteE + infiniteG + infiniteH))*dialBackDry;
|
||||
feedbackG = (infiniteG - (infiniteE + infiniteF + infiniteH))*dialBackDry;
|
||||
feedbackH = (infiniteH - (infiniteE + infiniteF + infiniteG))*dialBackDry;
|
||||
|
||||
inputSample = (infiniteA + infiniteB + infiniteC + infiniteD + infiniteE + infiniteF + infiniteG + infiniteH)/8.0;
|
||||
|
||||
tempSample = biquadB[2]*inputSample+biquadB[3]*biquadB[7]+biquadB[4]*biquadB[8]-biquadB[5]*biquadB[9]-biquadB[6]*biquadB[10];
|
||||
biquadB[8] = biquadB[7]; biquadB[7] = inputSample; inputSample = tempSample;
|
||||
biquadB[10] = biquadB[9]; biquadB[9] = inputSample; //DF1
|
||||
|
||||
if (inputSample > 1.0) inputSample = 1.0;
|
||||
if (inputSample < -1.0) inputSample = -1.0;
|
||||
//without this, you can get a NaN condition where it spits out DC offset at full blast!
|
||||
|
||||
inputSample = asin(inputSample);
|
||||
|
||||
tempSample = biquadC[2]*inputSample+biquadC[3]*biquadC[7]+biquadC[4]*biquadC[8]-biquadC[5]*biquadC[9]-biquadC[6]*biquadC[10];
|
||||
biquadC[8] = biquadC[7]; biquadC[7] = inputSample; inputSample = tempSample;
|
||||
biquadC[10] = biquadC[9]; biquadC[9] = inputSample; //DF1
|
||||
|
||||
if (wet !=1.0) {
|
||||
inputSample = (inputSample * wet) + (drySample * (1.0-wet));
|
||||
}
|
||||
|
||||
//begin 32 bit floating point dither
|
||||
int expon; frexpf((float)inputSample, &expon);
|
||||
fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5;
|
||||
inputSample += ((double(fpd)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62));
|
||||
//end 32 bit floating point dither
|
||||
|
||||
*destP = inputSample;
|
||||
|
||||
sourceP += inNumChannels; destP += inNumChannels;
|
||||
}
|
||||
}
|
||||
2
plugins/MacSignedAU/Infinity2/Infinity2.exp
Normal file
2
plugins/MacSignedAU/Infinity2/Infinity2.exp
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
_Infinity2Entry
|
||||
_Infinity2Factory
|
||||
191
plugins/MacSignedAU/Infinity2/Infinity2.h
Normal file
191
plugins/MacSignedAU/Infinity2/Infinity2.h
Normal file
|
|
@ -0,0 +1,191 @@
|
|||
/*
|
||||
* File: Infinity2.h
|
||||
*
|
||||
* Version: 1.0
|
||||
*
|
||||
* Created: 4/26/21
|
||||
*
|
||||
* Copyright: Copyright © 2021 Airwindows, All Rights Reserved
|
||||
*
|
||||
* Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. ("Apple") in
|
||||
* consideration of your agreement to the following terms, and your use, installation, modification
|
||||
* or redistribution of this Apple software constitutes acceptance of these terms. If you do
|
||||
* not agree with these terms, please do not use, install, modify or redistribute this Apple
|
||||
* software.
|
||||
*
|
||||
* In consideration of your agreement to abide by the following terms, and subject to these terms,
|
||||
* Apple grants you a personal, non-exclusive license, under Apple's copyrights in this
|
||||
* original Apple software (the "Apple Software"), to use, reproduce, modify and redistribute the
|
||||
* Apple Software, with or without modifications, in source and/or binary forms; provided that if you
|
||||
* redistribute the Apple Software in its entirety and without modifications, you must retain this
|
||||
* notice and the following text and disclaimers in all such redistributions of the Apple Software.
|
||||
* Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to
|
||||
* endorse or promote products derived from the Apple Software without specific prior written
|
||||
* permission from Apple. Except as expressly stated in this notice, no other rights or
|
||||
* licenses, express or implied, are granted by Apple herein, including but not limited to any
|
||||
* patent rights that may be infringed by your derivative works or by other works in which the
|
||||
* Apple Software may be incorporated.
|
||||
*
|
||||
* The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR
|
||||
* IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY
|
||||
* AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE
|
||||
* OR IN COMBINATION WITH YOUR PRODUCTS.
|
||||
*
|
||||
* IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE,
|
||||
* REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER
|
||||
* UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN
|
||||
* IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
*/
|
||||
#include "AUEffectBase.h"
|
||||
#include "Infinity2Version.h"
|
||||
|
||||
#if AU_DEBUG_DISPATCHER
|
||||
#include "AUDebugDispatcher.h"
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef __Infinity2_h__
|
||||
#define __Infinity2_h__
|
||||
|
||||
|
||||
#pragma mark ____Infinity2 Parameters
|
||||
|
||||
// parameters
|
||||
static const float kDefaultValue_ParamOne = 1.0;
|
||||
static const float kDefaultValue_ParamTwo = 0.5;
|
||||
static const float kDefaultValue_ParamThree = 0.0;
|
||||
static const float kDefaultValue_ParamFour = 1.0;
|
||||
static const float kDefaultValue_ParamFive = 1.0;
|
||||
static const float kDefaultValue_ParamSix = 1.0;
|
||||
|
||||
static CFStringRef kParameterOneName = CFSTR("Filter");
|
||||
static CFStringRef kParameterTwoName = CFSTR("Size");
|
||||
static CFStringRef kParameterThreeName = CFSTR("Damping");
|
||||
static CFStringRef kParameterFourName = CFSTR("Allpass");
|
||||
static CFStringRef kParameterFiveName = CFSTR("Feedback");
|
||||
static CFStringRef kParameterSixName = CFSTR("Dry/Wet");
|
||||
//Alter the name if desired, but using the plugin name is a start
|
||||
|
||||
enum {
|
||||
kParam_One =0,
|
||||
kParam_Two =1,
|
||||
kParam_Three =2,
|
||||
kParam_Four =3,
|
||||
kParam_Five =4,
|
||||
kParam_Six =5,
|
||||
//Add your parameters here...
|
||||
kNumberOfParameters=6
|
||||
};
|
||||
|
||||
#pragma mark ____Infinity2
|
||||
class Infinity2 : public AUEffectBase
|
||||
{
|
||||
public:
|
||||
Infinity2(AudioUnit component);
|
||||
#if AU_DEBUG_DISPATCHER
|
||||
virtual ~Infinity2 () { delete mDebugDispatcher; }
|
||||
#endif
|
||||
|
||||
virtual AUKernelBase * NewKernel() { return new Infinity2Kernel(this); }
|
||||
|
||||
virtual ComponentResult GetParameterValueStrings(AudioUnitScope inScope,
|
||||
AudioUnitParameterID inParameterID,
|
||||
CFArrayRef * outStrings);
|
||||
|
||||
virtual ComponentResult GetParameterInfo(AudioUnitScope inScope,
|
||||
AudioUnitParameterID inParameterID,
|
||||
AudioUnitParameterInfo &outParameterInfo);
|
||||
|
||||
virtual ComponentResult GetPropertyInfo(AudioUnitPropertyID inID,
|
||||
AudioUnitScope inScope,
|
||||
AudioUnitElement inElement,
|
||||
UInt32 & outDataSize,
|
||||
Boolean & outWritable );
|
||||
|
||||
virtual ComponentResult GetProperty(AudioUnitPropertyID inID,
|
||||
AudioUnitScope inScope,
|
||||
AudioUnitElement inElement,
|
||||
void * outData);
|
||||
|
||||
virtual ComponentResult Initialize();
|
||||
virtual bool SupportsTail () { return true; }
|
||||
virtual Float64 GetTailTime() {return (1.0/GetSampleRate())*0.0;} //in SECONDS! gsr * a number = in samples
|
||||
virtual Float64 GetLatency() {return (1.0/GetSampleRate())*0.0;} // in SECONDS! gsr * a number = in samples
|
||||
|
||||
/*! @method Version */
|
||||
virtual ComponentResult Version() { return kInfinity2Version; }
|
||||
|
||||
|
||||
|
||||
protected:
|
||||
class Infinity2Kernel : public AUKernelBase // most of the real work happens here
|
||||
{
|
||||
public:
|
||||
Infinity2Kernel(AUEffectBase *inAudioUnit )
|
||||
: AUKernelBase(inAudioUnit)
|
||||
{
|
||||
}
|
||||
|
||||
// *Required* overides for the process method for this effect
|
||||
// processes one channel of interleaved samples
|
||||
virtual void Process( const Float32 *inSourceP,
|
||||
Float32 *inDestP,
|
||||
UInt32 inFramesToProcess,
|
||||
UInt32 inNumChannels,
|
||||
bool &ioSilence);
|
||||
|
||||
virtual void Reset();
|
||||
|
||||
private:
|
||||
long double biquadA[11];
|
||||
long double biquadB[11];
|
||||
long double biquadC[11];
|
||||
|
||||
Float64 aA[8111];
|
||||
Float64 aB[7511];
|
||||
Float64 aC[7311];
|
||||
Float64 aD[6911];
|
||||
Float64 aE[6311];
|
||||
Float64 aF[6111];
|
||||
Float64 aG[5511];
|
||||
Float64 aH[4911];
|
||||
Float64 aI[4511];
|
||||
Float64 aJ[4311];
|
||||
Float64 aK[3911];
|
||||
Float64 aL[3311];
|
||||
Float64 aM[3111];
|
||||
|
||||
int countA, delayA;
|
||||
int countB, delayB;
|
||||
int countC, delayC;
|
||||
int countD, delayD;
|
||||
int countE, delayE;
|
||||
int countF, delayF;
|
||||
int countG, delayG;
|
||||
int countH, delayH;
|
||||
int countI, delayI;
|
||||
int countJ, delayJ;
|
||||
int countK, delayK;
|
||||
int countL, delayL;
|
||||
int countM, delayM;
|
||||
|
||||
Float64 feedbackA;
|
||||
Float64 feedbackB;
|
||||
Float64 feedbackC;
|
||||
Float64 feedbackD;
|
||||
Float64 feedbackE;
|
||||
Float64 feedbackF;
|
||||
Float64 feedbackG;
|
||||
Float64 feedbackH;
|
||||
|
||||
uint32_t fpd;
|
||||
};
|
||||
};
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
|
||||
#endif
|
||||
61
plugins/MacSignedAU/Infinity2/Infinity2.r
Normal file
61
plugins/MacSignedAU/Infinity2/Infinity2.r
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
/*
|
||||
* File: Infinity2.r
|
||||
*
|
||||
* Version: 1.0
|
||||
*
|
||||
* Created: 4/26/21
|
||||
*
|
||||
* Copyright: Copyright © 2021 Airwindows, All Rights Reserved
|
||||
*
|
||||
* Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. ("Apple") in
|
||||
* consideration of your agreement to the following terms, and your use, installation, modification
|
||||
* or redistribution of this Apple software constitutes acceptance of these terms. If you do
|
||||
* not agree with these terms, please do not use, install, modify or redistribute this Apple
|
||||
* software.
|
||||
*
|
||||
* In consideration of your agreement to abide by the following terms, and subject to these terms,
|
||||
* Apple grants you a personal, non-exclusive license, under Apple's copyrights in this
|
||||
* original Apple software (the "Apple Software"), to use, reproduce, modify and redistribute the
|
||||
* Apple Software, with or without modifications, in source and/or binary forms; provided that if you
|
||||
* redistribute the Apple Software in its entirety and without modifications, you must retain this
|
||||
* notice and the following text and disclaimers in all such redistributions of the Apple Software.
|
||||
* Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to
|
||||
* endorse or promote products derived from the Apple Software without specific prior written
|
||||
* permission from Apple. Except as expressly stated in this notice, no other rights or
|
||||
* licenses, express or implied, are granted by Apple herein, including but not limited to any
|
||||
* patent rights that may be infringed by your derivative works or by other works in which the
|
||||
* Apple Software may be incorporated.
|
||||
*
|
||||
* The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR
|
||||
* IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY
|
||||
* AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE
|
||||
* OR IN COMBINATION WITH YOUR PRODUCTS.
|
||||
*
|
||||
* IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE,
|
||||
* REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER
|
||||
* UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN
|
||||
* IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
*/
|
||||
#include <AudioUnit/AudioUnit.r>
|
||||
|
||||
#include "Infinity2Version.h"
|
||||
|
||||
// Note that resource IDs must be spaced 2 apart for the 'STR ' name and description
|
||||
#define kAudioUnitResID_Infinity2 1000
|
||||
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Infinity2~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
#define RES_ID kAudioUnitResID_Infinity2
|
||||
#define COMP_TYPE kAudioUnitType_Effect
|
||||
#define COMP_SUBTYPE Infinity2_COMP_SUBTYPE
|
||||
#define COMP_MANUF Infinity2_COMP_MANF
|
||||
|
||||
#define VERSION kInfinity2Version
|
||||
#define NAME "Airwindows: Infinity2"
|
||||
#define DESCRIPTION "Infinity2 AU"
|
||||
#define ENTRY_POINT "Infinity2Entry"
|
||||
|
||||
#include "AUResources.r"
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,137 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
089C1669FE841209C02AAC07 /* Project object */ = {
|
||||
activeBuildConfigurationName = Release;
|
||||
activeTarget = 8D01CCC60486CAD60068D4B7 /* Infinity2 */;
|
||||
codeSenseManager = 8BD3CCB9148830B20062E48C /* Code sense */;
|
||||
perUserDictionary = {
|
||||
PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
|
||||
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
|
||||
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
|
||||
PBXFileTableDataSourceColumnWidthsKey = (
|
||||
20,
|
||||
70,
|
||||
20,
|
||||
48,
|
||||
43,
|
||||
43,
|
||||
20,
|
||||
);
|
||||
PBXFileTableDataSourceColumnsKey = (
|
||||
PBXFileDataSource_FiletypeID,
|
||||
PBXFileDataSource_Filename_ColumnID,
|
||||
PBXFileDataSource_Built_ColumnID,
|
||||
PBXFileDataSource_ObjectSize_ColumnID,
|
||||
PBXFileDataSource_Errors_ColumnID,
|
||||
PBXFileDataSource_Warnings_ColumnID,
|
||||
PBXFileDataSource_Target_ColumnID,
|
||||
);
|
||||
};
|
||||
PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = {
|
||||
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
|
||||
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
|
||||
PBXFileTableDataSourceColumnWidthsKey = (
|
||||
20,
|
||||
252,
|
||||
60,
|
||||
20,
|
||||
48,
|
||||
43,
|
||||
43,
|
||||
);
|
||||
PBXFileTableDataSourceColumnsKey = (
|
||||
PBXFileDataSource_FiletypeID,
|
||||
PBXFileDataSource_Filename_ColumnID,
|
||||
PBXTargetDataSource_PrimaryAttribute,
|
||||
PBXFileDataSource_Built_ColumnID,
|
||||
PBXFileDataSource_ObjectSize_ColumnID,
|
||||
PBXFileDataSource_Errors_ColumnID,
|
||||
PBXFileDataSource_Warnings_ColumnID,
|
||||
);
|
||||
};
|
||||
PBXPerProjectTemplateStateSaveDate = 642018862;
|
||||
PBXWorkspaceStateSaveDate = 642018862;
|
||||
};
|
||||
perUserProjectItems = {
|
||||
8BA2A8FA26446DC400EB96D1 /* PlistBookmark */ = 8BA2A8FA26446DC400EB96D1 /* PlistBookmark */;
|
||||
8BA2A8FC26446DC400EB96D1 /* PBXTextBookmark */ = 8BA2A8FC26446DC400EB96D1 /* PBXTextBookmark */;
|
||||
8BA2A96D26448F3500EB96D1 /* PBXTextBookmark */ = 8BA2A96D26448F3500EB96D1 /* PBXTextBookmark */;
|
||||
};
|
||||
sourceControlManager = 8BD3CCB8148830B20062E48C /* Source Control */;
|
||||
userBuildSettings = {
|
||||
};
|
||||
};
|
||||
8BA05A660720730100365D66 /* Infinity2.cpp */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {1209, 7704}}";
|
||||
sepNavSelRange = "{19202, 0}";
|
||||
sepNavVisRange = "{17682, 2145}";
|
||||
sepNavWindowFrame = "{{413, 42}, {1027, 836}}";
|
||||
};
|
||||
};
|
||||
8BA05A690720730100365D66 /* Infinity2Version.h */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {1193, 1062}}";
|
||||
sepNavSelRange = "{2894, 0}";
|
||||
sepNavVisRange = "{955, 2002}";
|
||||
sepNavWindowFrame = "{{200, 48}, {1240, 830}}";
|
||||
};
|
||||
};
|
||||
8BA2A8FA26446DC400EB96D1 /* PlistBookmark */ = {
|
||||
isa = PlistBookmark;
|
||||
fRef = 8D01CCD10486CAD60068D4B7 /* Info.plist */;
|
||||
fallbackIsa = PBXBookmark;
|
||||
isK = 0;
|
||||
kPath = (
|
||||
CFBundleName,
|
||||
);
|
||||
name = /Users/christopherjohnson/Desktop/Infinity2/Info.plist;
|
||||
rLen = 0;
|
||||
rLoc = 9223372036854775808;
|
||||
};
|
||||
8BA2A8FC26446DC400EB96D1 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 8BC6025B073B072D006C4272 /* Infinity2.h */;
|
||||
name = "Infinity2.h: 184";
|
||||
rLen = 0;
|
||||
rLoc = 6497;
|
||||
rType = 0;
|
||||
vrLen = 242;
|
||||
vrLoc = 6059;
|
||||
};
|
||||
8BA2A96D26448F3500EB96D1 /* PBXTextBookmark */ = {
|
||||
isa = PBXTextBookmark;
|
||||
fRef = 8BC6025B073B072D006C4272 /* Infinity2.h */;
|
||||
name = "Infinity2.h: 184";
|
||||
rLen = 0;
|
||||
rLoc = 6497;
|
||||
rType = 0;
|
||||
vrLen = 0;
|
||||
vrLoc = 0;
|
||||
};
|
||||
8BC6025B073B072D006C4272 /* Infinity2.h */ = {
|
||||
uiCtxt = {
|
||||
sepNavIntBoundsRect = "{{0, 0}, {840, 3888}}";
|
||||
sepNavSelRange = "{6497, 0}";
|
||||
sepNavVisRange = "{0, 0}";
|
||||
sepNavWindowFrame = "{{450, 42}, {990, 778}}";
|
||||
};
|
||||
};
|
||||
8BD3CCB8148830B20062E48C /* Source Control */ = {
|
||||
isa = PBXSourceControlManager;
|
||||
fallbackIsa = XCSourceControlManager;
|
||||
isSCMEnabled = 0;
|
||||
scmConfiguration = {
|
||||
repositoryNamesForRoots = {
|
||||
"" = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
8BD3CCB9148830B20062E48C /* Code sense */ = {
|
||||
isa = PBXCodeSenseManager;
|
||||
indexTemplatePath = "";
|
||||
};
|
||||
8D01CCC60486CAD60068D4B7 /* Infinity2 */ = {
|
||||
activeExec = 0;
|
||||
};
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,953 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
8B62A0E62644B1EC007CF5D6 /* CAExtAudioFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A05E2644B1EC007CF5D6 /* CAExtAudioFile.h */; };
|
||||
8B62A0E72644B1EC007CF5D6 /* CACFMachPort.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A05F2644B1EC007CF5D6 /* CACFMachPort.h */; };
|
||||
8B62A0E82644B1EC007CF5D6 /* CABool.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0602644B1EC007CF5D6 /* CABool.h */; };
|
||||
8B62A0E92644B1EC007CF5D6 /* CAComponent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0612644B1EC007CF5D6 /* CAComponent.cpp */; };
|
||||
8B62A0EA2644B1EC007CF5D6 /* CADebugger.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0622644B1EC007CF5D6 /* CADebugger.h */; };
|
||||
8B62A0EB2644B1EC007CF5D6 /* CACFNumber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0632644B1EC007CF5D6 /* CACFNumber.cpp */; };
|
||||
8B62A0EC2644B1EC007CF5D6 /* CAGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0642644B1EC007CF5D6 /* CAGuard.h */; };
|
||||
8B62A0ED2644B1EC007CF5D6 /* CAAtomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0652644B1EC007CF5D6 /* CAAtomic.h */; };
|
||||
8B62A0EE2644B1EC007CF5D6 /* CAStreamBasicDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0662644B1EC007CF5D6 /* CAStreamBasicDescription.h */; };
|
||||
8B62A0EF2644B1EC007CF5D6 /* CACFObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0672644B1EC007CF5D6 /* CACFObject.h */; };
|
||||
8B62A0F02644B1EC007CF5D6 /* CAStreamRangedDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0682644B1EC007CF5D6 /* CAStreamRangedDescription.h */; };
|
||||
8B62A0F12644B1EC007CF5D6 /* CATokenMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0692644B1EC007CF5D6 /* CATokenMap.h */; };
|
||||
8B62A0F22644B1EC007CF5D6 /* CAComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A06A2644B1EC007CF5D6 /* CAComponent.h */; };
|
||||
8B62A0F32644B1EC007CF5D6 /* CAAudioBufferList.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A06B2644B1EC007CF5D6 /* CAAudioBufferList.h */; };
|
||||
8B62A0F42644B1EC007CF5D6 /* CAAudioUnit.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A06C2644B1EC007CF5D6 /* CAAudioUnit.h */; };
|
||||
8B62A0F52644B1EC007CF5D6 /* CAAUParameter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A06D2644B1EC007CF5D6 /* CAAUParameter.h */; };
|
||||
8B62A0F62644B1EC007CF5D6 /* CAException.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A06E2644B1EC007CF5D6 /* CAException.h */; };
|
||||
8B62A0F72644B1EC007CF5D6 /* CAAUProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A06F2644B1EC007CF5D6 /* CAAUProcessor.cpp */; };
|
||||
8B62A0F82644B1EC007CF5D6 /* CAAUProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0702644B1EC007CF5D6 /* CAAUProcessor.h */; };
|
||||
8B62A0F92644B1EC007CF5D6 /* CAProcess.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0712644B1EC007CF5D6 /* CAProcess.h */; };
|
||||
8B62A0FA2644B1EC007CF5D6 /* CACFDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0722644B1EC007CF5D6 /* CACFDictionary.h */; };
|
||||
8B62A0FB2644B1EC007CF5D6 /* CAPThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0732644B1EC007CF5D6 /* CAPThread.h */; };
|
||||
8B62A0FC2644B1EC007CF5D6 /* CAAUParameter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0742644B1EC007CF5D6 /* CAAUParameter.cpp */; };
|
||||
8B62A0FD2644B1EC007CF5D6 /* CAAudioTimeStamp.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0752644B1EC007CF5D6 /* CAAudioTimeStamp.h */; };
|
||||
8B62A0FE2644B1EC007CF5D6 /* CAFilePathUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0762644B1EC007CF5D6 /* CAFilePathUtils.cpp */; };
|
||||
8B62A0FF2644B1EC007CF5D6 /* CAAudioValueRange.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0772644B1EC007CF5D6 /* CAAudioValueRange.h */; };
|
||||
8B62A1002644B1EC007CF5D6 /* CAVectorUnitTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0782644B1EC007CF5D6 /* CAVectorUnitTypes.h */; };
|
||||
8B62A1012644B1EC007CF5D6 /* CAAudioChannelLayoutObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0792644B1EC007CF5D6 /* CAAudioChannelLayoutObject.cpp */; };
|
||||
8B62A1022644B1EC007CF5D6 /* CAGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A07A2644B1EC007CF5D6 /* CAGuard.cpp */; };
|
||||
8B62A1032644B1EC007CF5D6 /* CACFNumber.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A07B2644B1EC007CF5D6 /* CACFNumber.h */; };
|
||||
8B62A1042644B1EC007CF5D6 /* CACFDistributedNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A07C2644B1EC007CF5D6 /* CACFDistributedNotification.cpp */; };
|
||||
8B62A1052644B1EC007CF5D6 /* CACFString.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A07D2644B1EC007CF5D6 /* CACFString.h */; };
|
||||
8B62A1062644B1EC007CF5D6 /* CAAUMIDIMapManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A07E2644B1EC007CF5D6 /* CAAUMIDIMapManager.cpp */; };
|
||||
8B62A1072644B1EC007CF5D6 /* CAComponentDescription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A07F2644B1EC007CF5D6 /* CAComponentDescription.cpp */; };
|
||||
8B62A1082644B1EC007CF5D6 /* CAHostTimeBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0802644B1EC007CF5D6 /* CAHostTimeBase.h */; };
|
||||
8B62A1092644B1EC007CF5D6 /* CADebugMacros.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0812644B1EC007CF5D6 /* CADebugMacros.cpp */; };
|
||||
8B62A10A2644B1EC007CF5D6 /* CAAudioFileFormats.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0822644B1EC007CF5D6 /* CAAudioFileFormats.h */; };
|
||||
8B62A10B2644B1EC007CF5D6 /* CAAUMIDIMapManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0832644B1EC007CF5D6 /* CAAUMIDIMapManager.h */; };
|
||||
8B62A10C2644B1EC007CF5D6 /* CACFDictionary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0842644B1EC007CF5D6 /* CACFDictionary.cpp */; };
|
||||
8B62A10D2644B1EC007CF5D6 /* CAMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0852644B1EC007CF5D6 /* CAMutex.h */; };
|
||||
8B62A10E2644B1EC007CF5D6 /* CACFString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0862644B1EC007CF5D6 /* CACFString.cpp */; };
|
||||
8B62A10F2644B1EC007CF5D6 /* CASettingsStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0872644B1EC007CF5D6 /* CASettingsStorage.h */; };
|
||||
8B62A1102644B1EC007CF5D6 /* CADebugPrintf.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0882644B1EC007CF5D6 /* CADebugPrintf.h */; };
|
||||
8B62A1112644B1EC007CF5D6 /* CAXException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0892644B1EC007CF5D6 /* CAXException.cpp */; };
|
||||
8B62A1122644B1EC007CF5D6 /* CAAUMIDIMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A08A2644B1EC007CF5D6 /* CAAUMIDIMap.h */; };
|
||||
8B62A1132644B1EC007CF5D6 /* AUParamInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A08B2644B1EC007CF5D6 /* AUParamInfo.h */; };
|
||||
8B62A1142644B1EC007CF5D6 /* CABitOperations.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A08C2644B1EC007CF5D6 /* CABitOperations.h */; };
|
||||
8B62A1152644B1EC007CF5D6 /* CACFPreferences.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A08D2644B1EC007CF5D6 /* CACFPreferences.cpp */; };
|
||||
8B62A1162644B1EC007CF5D6 /* CABundleLocker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A08E2644B1EC007CF5D6 /* CABundleLocker.h */; };
|
||||
8B62A1172644B1EC007CF5D6 /* CAPropertyAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A08F2644B1EC007CF5D6 /* CAPropertyAddress.h */; };
|
||||
8B62A1182644B1EC007CF5D6 /* CAXException.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0902644B1EC007CF5D6 /* CAXException.h */; };
|
||||
8B62A1192644B1EC007CF5D6 /* CAAudioChannelLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0912644B1EC007CF5D6 /* CAAudioChannelLayout.cpp */; };
|
||||
8B62A11A2644B1EC007CF5D6 /* CAThreadSafeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0922644B1EC007CF5D6 /* CAThreadSafeList.h */; };
|
||||
8B62A11B2644B1EC007CF5D6 /* CAAudioUnitOutputCapturer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0932644B1EC007CF5D6 /* CAAudioUnitOutputCapturer.h */; };
|
||||
8B62A11C2644B1EC007CF5D6 /* AUParamInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0942644B1EC007CF5D6 /* AUParamInfo.cpp */; };
|
||||
8B62A11D2644B1EC007CF5D6 /* CASharedLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0952644B1EC007CF5D6 /* CASharedLibrary.cpp */; };
|
||||
8B62A11E2644B1EC007CF5D6 /* CAAUMIDIMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0962644B1EC007CF5D6 /* CAAUMIDIMap.cpp */; };
|
||||
8B62A11F2644B1EC007CF5D6 /* CALogMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0972644B1EC007CF5D6 /* CALogMacros.h */; };
|
||||
8B62A1202644B1EC007CF5D6 /* CACFMessagePort.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0982644B1EC007CF5D6 /* CACFMessagePort.cpp */; };
|
||||
8B62A1212644B1EC007CF5D6 /* CARingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0992644B1EC007CF5D6 /* CARingBuffer.h */; };
|
||||
8B62A1222644B1EC007CF5D6 /* AUOutputBL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A09A2644B1EC007CF5D6 /* AUOutputBL.cpp */; };
|
||||
8B62A1232644B1EC007CF5D6 /* CABufferList.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A09B2644B1EC007CF5D6 /* CABufferList.h */; };
|
||||
8B62A1242644B1EC007CF5D6 /* CASharedLibrary.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A09C2644B1EC007CF5D6 /* CASharedLibrary.h */; };
|
||||
8B62A1252644B1EC007CF5D6 /* CACFData.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A09D2644B1EC007CF5D6 /* CACFData.h */; };
|
||||
8B62A1262644B1EC007CF5D6 /* CAStreamRangedDescription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A09E2644B1EC007CF5D6 /* CAStreamRangedDescription.cpp */; };
|
||||
8B62A1272644B1EC007CF5D6 /* CAPThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A09F2644B1EC007CF5D6 /* CAPThread.cpp */; };
|
||||
8B62A1282644B1EC007CF5D6 /* CAAutoDisposer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0A02644B1EC007CF5D6 /* CAAutoDisposer.h */; };
|
||||
8B62A1292644B1EC007CF5D6 /* CACFPreferences.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0A12644B1EC007CF5D6 /* CACFPreferences.h */; };
|
||||
8B62A12A2644B1EC007CF5D6 /* CAVectorUnit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0A22644B1EC007CF5D6 /* CAVectorUnit.cpp */; };
|
||||
8B62A12B2644B1EC007CF5D6 /* CAComponentDescription.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0A32644B1EC007CF5D6 /* CAComponentDescription.h */; };
|
||||
8B62A12C2644B1EC007CF5D6 /* CADebugMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0A42644B1EC007CF5D6 /* CADebugMacros.h */; };
|
||||
8B62A12D2644B1EC007CF5D6 /* AUOutputBL.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0A52644B1EC007CF5D6 /* AUOutputBL.h */; };
|
||||
8B62A12E2644B1EC007CF5D6 /* CADebugPrintf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0A62644B1EC007CF5D6 /* CADebugPrintf.cpp */; };
|
||||
8B62A12F2644B1EC007CF5D6 /* CARingBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0A72644B1EC007CF5D6 /* CARingBuffer.cpp */; };
|
||||
8B62A1302644B1EC007CF5D6 /* CACFPlugIn.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0A82644B1EC007CF5D6 /* CACFPlugIn.h */; };
|
||||
8B62A1312644B1EC007CF5D6 /* CASettingsStorage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0A92644B1EC007CF5D6 /* CASettingsStorage.cpp */; };
|
||||
8B62A1322644B1EC007CF5D6 /* CAMixMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0AA2644B1EC007CF5D6 /* CAMixMap.h */; };
|
||||
8B62A1332644B1EC007CF5D6 /* CACFDistributedNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0AB2644B1EC007CF5D6 /* CACFDistributedNotification.h */; };
|
||||
8B62A1342644B1EC007CF5D6 /* CAFilePathUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0AC2644B1EC007CF5D6 /* CAFilePathUtils.h */; };
|
||||
8B62A1352644B1EC007CF5D6 /* CATink.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0AD2644B1EC007CF5D6 /* CATink.h */; };
|
||||
8B62A1362644B1EC007CF5D6 /* CAStreamBasicDescription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0AE2644B1EC007CF5D6 /* CAStreamBasicDescription.cpp */; };
|
||||
8B62A1372644B1EC007CF5D6 /* CAAudioChannelLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0AF2644B1EC007CF5D6 /* CAAudioChannelLayout.h */; };
|
||||
8B62A1382644B1EC007CF5D6 /* CAProcess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0B02644B1EC007CF5D6 /* CAProcess.cpp */; };
|
||||
8B62A1392644B1EC007CF5D6 /* CAHostTimeBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0B12644B1EC007CF5D6 /* CAHostTimeBase.cpp */; };
|
||||
8B62A13A2644B1EC007CF5D6 /* CAPersistence.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0B22644B1EC007CF5D6 /* CAPersistence.cpp */; };
|
||||
8B62A13B2644B1EC007CF5D6 /* CAAudioBufferList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0B32644B1EC007CF5D6 /* CAAudioBufferList.cpp */; };
|
||||
8B62A13C2644B1EC007CF5D6 /* CAAudioTimeStamp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0B42644B1EC007CF5D6 /* CAAudioTimeStamp.cpp */; };
|
||||
8B62A13D2644B1EC007CF5D6 /* CAVectorUnit.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0B52644B1EC007CF5D6 /* CAVectorUnit.h */; };
|
||||
8B62A13E2644B1EC007CF5D6 /* CAByteOrder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0B62644B1EC007CF5D6 /* CAByteOrder.h */; };
|
||||
8B62A13F2644B1EC007CF5D6 /* CACFArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0B72644B1EC007CF5D6 /* CACFArray.h */; };
|
||||
8B62A1402644B1EC007CF5D6 /* CAAtomicStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0B82644B1EC007CF5D6 /* CAAtomicStack.h */; };
|
||||
8B62A1412644B1EC007CF5D6 /* CAReferenceCounted.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0B92644B1EC007CF5D6 /* CAReferenceCounted.h */; };
|
||||
8B62A1422644B1EC007CF5D6 /* CACFMachPort.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0BA2644B1EC007CF5D6 /* CACFMachPort.cpp */; };
|
||||
8B62A1432644B1EC007CF5D6 /* CABufferList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0BB2644B1EC007CF5D6 /* CABufferList.cpp */; };
|
||||
8B62A1442644B1EC007CF5D6 /* CAMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0BC2644B1EC007CF5D6 /* CAMutex.cpp */; };
|
||||
8B62A1452644B1EC007CF5D6 /* CADebugger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0BD2644B1EC007CF5D6 /* CADebugger.cpp */; };
|
||||
8B62A1462644B1EC007CF5D6 /* CABundleLocker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0BE2644B1EC007CF5D6 /* CABundleLocker.cpp */; };
|
||||
8B62A1472644B1EC007CF5D6 /* CAAudioFileFormats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0BF2644B1EC007CF5D6 /* CAAudioFileFormats.cpp */; };
|
||||
8B62A1482644B1EC007CF5D6 /* CAMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0C02644B1EC007CF5D6 /* CAMath.h */; };
|
||||
8B62A1492644B1EC007CF5D6 /* CACFArray.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0C12644B1EC007CF5D6 /* CACFArray.cpp */; };
|
||||
8B62A14A2644B1EC007CF5D6 /* CACFMessagePort.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0C22644B1EC007CF5D6 /* CACFMessagePort.h */; };
|
||||
8B62A14B2644B1EC007CF5D6 /* CAAudioValueRange.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0C32644B1EC007CF5D6 /* CAAudioValueRange.cpp */; };
|
||||
8B62A14C2644B1EC007CF5D6 /* CAAudioUnit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0C42644B1EC007CF5D6 /* CAAudioUnit.cpp */; };
|
||||
8B62A14D2644B1EC007CF5D6 /* AUViewLocalizedStringKeys.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0C82644B1EC007CF5D6 /* AUViewLocalizedStringKeys.h */; };
|
||||
8B62A14E2644B1EC007CF5D6 /* ComponentBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0CA2644B1EC007CF5D6 /* ComponentBase.cpp */; };
|
||||
8B62A14F2644B1EC007CF5D6 /* AUScopeElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0CB2644B1EC007CF5D6 /* AUScopeElement.cpp */; };
|
||||
8B62A1502644B1EC007CF5D6 /* ComponentBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0CC2644B1EC007CF5D6 /* ComponentBase.h */; };
|
||||
8B62A1512644B1EC007CF5D6 /* AUBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0CD2644B1EC007CF5D6 /* AUBase.cpp */; };
|
||||
8B62A1522644B1EC007CF5D6 /* AUInputElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0CE2644B1EC007CF5D6 /* AUInputElement.h */; };
|
||||
8B62A1532644B1EC007CF5D6 /* AUBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0CF2644B1EC007CF5D6 /* AUBase.h */; };
|
||||
8B62A1542644B1EC007CF5D6 /* AUPlugInDispatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0D02644B1EC007CF5D6 /* AUPlugInDispatch.h */; };
|
||||
8B62A1552644B1EC007CF5D6 /* AUDispatch.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0D12644B1EC007CF5D6 /* AUDispatch.h */; };
|
||||
8B62A1562644B1EC007CF5D6 /* AUOutputElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0D22644B1EC007CF5D6 /* AUOutputElement.cpp */; };
|
||||
8B62A1582644B1EC007CF5D6 /* AUPlugInDispatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0D42644B1EC007CF5D6 /* AUPlugInDispatch.cpp */; };
|
||||
8B62A1592644B1EC007CF5D6 /* AUOutputElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0D52644B1EC007CF5D6 /* AUOutputElement.h */; };
|
||||
8B62A15A2644B1EC007CF5D6 /* AUDispatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0D62644B1EC007CF5D6 /* AUDispatch.cpp */; };
|
||||
8B62A15B2644B1EC007CF5D6 /* AUScopeElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0D72644B1EC007CF5D6 /* AUScopeElement.h */; };
|
||||
8B62A15C2644B1EC007CF5D6 /* AUInputElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0D82644B1EC007CF5D6 /* AUInputElement.cpp */; };
|
||||
8B62A15D2644B1EC007CF5D6 /* AUEffectBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0DA2644B1EC007CF5D6 /* AUEffectBase.cpp */; };
|
||||
8B62A15E2644B1EC007CF5D6 /* AUEffectBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0DB2644B1EC007CF5D6 /* AUEffectBase.h */; };
|
||||
8B62A15F2644B1EC007CF5D6 /* AUTimestampGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0DD2644B1EC007CF5D6 /* AUTimestampGenerator.h */; };
|
||||
8B62A1602644B1EC007CF5D6 /* AUBaseHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0DE2644B1EC007CF5D6 /* AUBaseHelper.cpp */; };
|
||||
8B62A1612644B1EC007CF5D6 /* AUSilentTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0DF2644B1EC007CF5D6 /* AUSilentTimeout.h */; };
|
||||
8B62A1622644B1EC007CF5D6 /* AUInputFormatConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0E02644B1EC007CF5D6 /* AUInputFormatConverter.h */; };
|
||||
8B62A1632644B1EC007CF5D6 /* AUTimestampGenerator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0E12644B1EC007CF5D6 /* AUTimestampGenerator.cpp */; };
|
||||
8B62A1642644B1EC007CF5D6 /* AUBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8B62A0E22644B1EC007CF5D6 /* AUBuffer.cpp */; };
|
||||
8B62A1652644B1EC007CF5D6 /* AUMIDIDefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0E32644B1EC007CF5D6 /* AUMIDIDefs.h */; };
|
||||
8B62A1662644B1EC007CF5D6 /* AUBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0E42644B1EC007CF5D6 /* AUBuffer.h */; };
|
||||
8B62A1672644B1EC007CF5D6 /* AUBaseHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B62A0E52644B1EC007CF5D6 /* AUBaseHelper.h */; };
|
||||
8BA05A6B0720730100365D66 /* Infinity2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BA05A660720730100365D66 /* Infinity2.cpp */; };
|
||||
8BA05A6E0720730100365D66 /* Infinity2Version.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA05A690720730100365D66 /* Infinity2Version.h */; };
|
||||
8BA05AFC072074E100365D66 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8BA05AF9072074E100365D66 /* AudioToolbox.framework */; };
|
||||
8BA05AFD072074E100365D66 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8BA05AFA072074E100365D66 /* AudioUnit.framework */; };
|
||||
8BA05B02072074F900365D66 /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8BA05B01072074F900365D66 /* CoreServices.framework */; };
|
||||
8BC6025C073B072D006C4272 /* Infinity2.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC6025B073B072D006C4272 /* Infinity2.h */; };
|
||||
8D01CCCA0486CAD60068D4B7 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 089C167DFE841241C02AAC07 /* InfoPlist.strings */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
8B5C7FBF076FB2C200A15F61 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = /System/Library/Frameworks/CoreAudio.framework; sourceTree = "<absolute>"; };
|
||||
8B62A05E2644B1EC007CF5D6 /* CAExtAudioFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAExtAudioFile.h; sourceTree = "<group>"; };
|
||||
8B62A05F2644B1EC007CF5D6 /* CACFMachPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CACFMachPort.h; sourceTree = "<group>"; };
|
||||
8B62A0602644B1EC007CF5D6 /* CABool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CABool.h; sourceTree = "<group>"; };
|
||||
8B62A0612644B1EC007CF5D6 /* CAComponent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAComponent.cpp; sourceTree = "<group>"; };
|
||||
8B62A0622644B1EC007CF5D6 /* CADebugger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CADebugger.h; sourceTree = "<group>"; };
|
||||
8B62A0632644B1EC007CF5D6 /* CACFNumber.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CACFNumber.cpp; sourceTree = "<group>"; };
|
||||
8B62A0642644B1EC007CF5D6 /* CAGuard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAGuard.h; sourceTree = "<group>"; };
|
||||
8B62A0652644B1EC007CF5D6 /* CAAtomic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAtomic.h; sourceTree = "<group>"; };
|
||||
8B62A0662644B1EC007CF5D6 /* CAStreamBasicDescription.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAStreamBasicDescription.h; sourceTree = "<group>"; };
|
||||
8B62A0672644B1EC007CF5D6 /* CACFObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CACFObject.h; sourceTree = "<group>"; };
|
||||
8B62A0682644B1EC007CF5D6 /* CAStreamRangedDescription.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAStreamRangedDescription.h; sourceTree = "<group>"; };
|
||||
8B62A0692644B1EC007CF5D6 /* CATokenMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CATokenMap.h; sourceTree = "<group>"; };
|
||||
8B62A06A2644B1EC007CF5D6 /* CAComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAComponent.h; sourceTree = "<group>"; };
|
||||
8B62A06B2644B1EC007CF5D6 /* CAAudioBufferList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAudioBufferList.h; sourceTree = "<group>"; };
|
||||
8B62A06C2644B1EC007CF5D6 /* CAAudioUnit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAudioUnit.h; sourceTree = "<group>"; };
|
||||
8B62A06D2644B1EC007CF5D6 /* CAAUParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAUParameter.h; sourceTree = "<group>"; };
|
||||
8B62A06E2644B1EC007CF5D6 /* CAException.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAException.h; sourceTree = "<group>"; };
|
||||
8B62A06F2644B1EC007CF5D6 /* CAAUProcessor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAAUProcessor.cpp; sourceTree = "<group>"; };
|
||||
8B62A0702644B1EC007CF5D6 /* CAAUProcessor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAUProcessor.h; sourceTree = "<group>"; };
|
||||
8B62A0712644B1EC007CF5D6 /* CAProcess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAProcess.h; sourceTree = "<group>"; };
|
||||
8B62A0722644B1EC007CF5D6 /* CACFDictionary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CACFDictionary.h; sourceTree = "<group>"; };
|
||||
8B62A0732644B1EC007CF5D6 /* CAPThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAPThread.h; sourceTree = "<group>"; };
|
||||
8B62A0742644B1EC007CF5D6 /* CAAUParameter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAAUParameter.cpp; sourceTree = "<group>"; };
|
||||
8B62A0752644B1EC007CF5D6 /* CAAudioTimeStamp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAudioTimeStamp.h; sourceTree = "<group>"; };
|
||||
8B62A0762644B1EC007CF5D6 /* CAFilePathUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAFilePathUtils.cpp; sourceTree = "<group>"; };
|
||||
8B62A0772644B1EC007CF5D6 /* CAAudioValueRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAudioValueRange.h; sourceTree = "<group>"; };
|
||||
8B62A0782644B1EC007CF5D6 /* CAVectorUnitTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAVectorUnitTypes.h; sourceTree = "<group>"; };
|
||||
8B62A0792644B1EC007CF5D6 /* CAAudioChannelLayoutObject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAAudioChannelLayoutObject.cpp; sourceTree = "<group>"; };
|
||||
8B62A07A2644B1EC007CF5D6 /* CAGuard.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAGuard.cpp; sourceTree = "<group>"; };
|
||||
8B62A07B2644B1EC007CF5D6 /* CACFNumber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CACFNumber.h; sourceTree = "<group>"; };
|
||||
8B62A07C2644B1EC007CF5D6 /* CACFDistributedNotification.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CACFDistributedNotification.cpp; sourceTree = "<group>"; };
|
||||
8B62A07D2644B1EC007CF5D6 /* CACFString.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CACFString.h; sourceTree = "<group>"; };
|
||||
8B62A07E2644B1EC007CF5D6 /* CAAUMIDIMapManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAAUMIDIMapManager.cpp; sourceTree = "<group>"; };
|
||||
8B62A07F2644B1EC007CF5D6 /* CAComponentDescription.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAComponentDescription.cpp; sourceTree = "<group>"; };
|
||||
8B62A0802644B1EC007CF5D6 /* CAHostTimeBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAHostTimeBase.h; sourceTree = "<group>"; };
|
||||
8B62A0812644B1EC007CF5D6 /* CADebugMacros.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CADebugMacros.cpp; sourceTree = "<group>"; };
|
||||
8B62A0822644B1EC007CF5D6 /* CAAudioFileFormats.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAudioFileFormats.h; sourceTree = "<group>"; };
|
||||
8B62A0832644B1EC007CF5D6 /* CAAUMIDIMapManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAUMIDIMapManager.h; sourceTree = "<group>"; };
|
||||
8B62A0842644B1EC007CF5D6 /* CACFDictionary.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CACFDictionary.cpp; sourceTree = "<group>"; };
|
||||
8B62A0852644B1EC007CF5D6 /* CAMutex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAMutex.h; sourceTree = "<group>"; };
|
||||
8B62A0862644B1EC007CF5D6 /* CACFString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CACFString.cpp; sourceTree = "<group>"; };
|
||||
8B62A0872644B1EC007CF5D6 /* CASettingsStorage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CASettingsStorage.h; sourceTree = "<group>"; };
|
||||
8B62A0882644B1EC007CF5D6 /* CADebugPrintf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CADebugPrintf.h; sourceTree = "<group>"; };
|
||||
8B62A0892644B1EC007CF5D6 /* CAXException.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAXException.cpp; sourceTree = "<group>"; };
|
||||
8B62A08A2644B1EC007CF5D6 /* CAAUMIDIMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAUMIDIMap.h; sourceTree = "<group>"; };
|
||||
8B62A08B2644B1EC007CF5D6 /* AUParamInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUParamInfo.h; sourceTree = "<group>"; };
|
||||
8B62A08C2644B1EC007CF5D6 /* CABitOperations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CABitOperations.h; sourceTree = "<group>"; };
|
||||
8B62A08D2644B1EC007CF5D6 /* CACFPreferences.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CACFPreferences.cpp; sourceTree = "<group>"; };
|
||||
8B62A08E2644B1EC007CF5D6 /* CABundleLocker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CABundleLocker.h; sourceTree = "<group>"; };
|
||||
8B62A08F2644B1EC007CF5D6 /* CAPropertyAddress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAPropertyAddress.h; sourceTree = "<group>"; };
|
||||
8B62A0902644B1EC007CF5D6 /* CAXException.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAXException.h; sourceTree = "<group>"; };
|
||||
8B62A0912644B1EC007CF5D6 /* CAAudioChannelLayout.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAAudioChannelLayout.cpp; sourceTree = "<group>"; };
|
||||
8B62A0922644B1EC007CF5D6 /* CAThreadSafeList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAThreadSafeList.h; sourceTree = "<group>"; };
|
||||
8B62A0932644B1EC007CF5D6 /* CAAudioUnitOutputCapturer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAudioUnitOutputCapturer.h; sourceTree = "<group>"; };
|
||||
8B62A0942644B1EC007CF5D6 /* AUParamInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AUParamInfo.cpp; sourceTree = "<group>"; };
|
||||
8B62A0952644B1EC007CF5D6 /* CASharedLibrary.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CASharedLibrary.cpp; sourceTree = "<group>"; };
|
||||
8B62A0962644B1EC007CF5D6 /* CAAUMIDIMap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAAUMIDIMap.cpp; sourceTree = "<group>"; };
|
||||
8B62A0972644B1EC007CF5D6 /* CALogMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CALogMacros.h; sourceTree = "<group>"; };
|
||||
8B62A0982644B1EC007CF5D6 /* CACFMessagePort.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CACFMessagePort.cpp; sourceTree = "<group>"; };
|
||||
8B62A0992644B1EC007CF5D6 /* CARingBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CARingBuffer.h; sourceTree = "<group>"; };
|
||||
8B62A09A2644B1EC007CF5D6 /* AUOutputBL.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AUOutputBL.cpp; sourceTree = "<group>"; };
|
||||
8B62A09B2644B1EC007CF5D6 /* CABufferList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CABufferList.h; sourceTree = "<group>"; };
|
||||
8B62A09C2644B1EC007CF5D6 /* CASharedLibrary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CASharedLibrary.h; sourceTree = "<group>"; };
|
||||
8B62A09D2644B1EC007CF5D6 /* CACFData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CACFData.h; sourceTree = "<group>"; };
|
||||
8B62A09E2644B1EC007CF5D6 /* CAStreamRangedDescription.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAStreamRangedDescription.cpp; sourceTree = "<group>"; };
|
||||
8B62A09F2644B1EC007CF5D6 /* CAPThread.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAPThread.cpp; sourceTree = "<group>"; };
|
||||
8B62A0A02644B1EC007CF5D6 /* CAAutoDisposer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAutoDisposer.h; sourceTree = "<group>"; };
|
||||
8B62A0A12644B1EC007CF5D6 /* CACFPreferences.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CACFPreferences.h; sourceTree = "<group>"; };
|
||||
8B62A0A22644B1EC007CF5D6 /* CAVectorUnit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAVectorUnit.cpp; sourceTree = "<group>"; };
|
||||
8B62A0A32644B1EC007CF5D6 /* CAComponentDescription.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAComponentDescription.h; sourceTree = "<group>"; };
|
||||
8B62A0A42644B1EC007CF5D6 /* CADebugMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CADebugMacros.h; sourceTree = "<group>"; };
|
||||
8B62A0A52644B1EC007CF5D6 /* AUOutputBL.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUOutputBL.h; sourceTree = "<group>"; };
|
||||
8B62A0A62644B1EC007CF5D6 /* CADebugPrintf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CADebugPrintf.cpp; sourceTree = "<group>"; };
|
||||
8B62A0A72644B1EC007CF5D6 /* CARingBuffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CARingBuffer.cpp; sourceTree = "<group>"; };
|
||||
8B62A0A82644B1EC007CF5D6 /* CACFPlugIn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CACFPlugIn.h; sourceTree = "<group>"; };
|
||||
8B62A0A92644B1EC007CF5D6 /* CASettingsStorage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CASettingsStorage.cpp; sourceTree = "<group>"; };
|
||||
8B62A0AA2644B1EC007CF5D6 /* CAMixMap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAMixMap.h; sourceTree = "<group>"; };
|
||||
8B62A0AB2644B1EC007CF5D6 /* CACFDistributedNotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CACFDistributedNotification.h; sourceTree = "<group>"; };
|
||||
8B62A0AC2644B1EC007CF5D6 /* CAFilePathUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAFilePathUtils.h; sourceTree = "<group>"; };
|
||||
8B62A0AD2644B1EC007CF5D6 /* CATink.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CATink.h; sourceTree = "<group>"; };
|
||||
8B62A0AE2644B1EC007CF5D6 /* CAStreamBasicDescription.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAStreamBasicDescription.cpp; sourceTree = "<group>"; };
|
||||
8B62A0AF2644B1EC007CF5D6 /* CAAudioChannelLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAudioChannelLayout.h; sourceTree = "<group>"; };
|
||||
8B62A0B02644B1EC007CF5D6 /* CAProcess.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAProcess.cpp; sourceTree = "<group>"; };
|
||||
8B62A0B12644B1EC007CF5D6 /* CAHostTimeBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAHostTimeBase.cpp; sourceTree = "<group>"; };
|
||||
8B62A0B22644B1EC007CF5D6 /* CAPersistence.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAPersistence.cpp; sourceTree = "<group>"; };
|
||||
8B62A0B32644B1EC007CF5D6 /* CAAudioBufferList.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAAudioBufferList.cpp; sourceTree = "<group>"; };
|
||||
8B62A0B42644B1EC007CF5D6 /* CAAudioTimeStamp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAAudioTimeStamp.cpp; sourceTree = "<group>"; };
|
||||
8B62A0B52644B1EC007CF5D6 /* CAVectorUnit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAVectorUnit.h; sourceTree = "<group>"; };
|
||||
8B62A0B62644B1EC007CF5D6 /* CAByteOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAByteOrder.h; sourceTree = "<group>"; };
|
||||
8B62A0B72644B1EC007CF5D6 /* CACFArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CACFArray.h; sourceTree = "<group>"; };
|
||||
8B62A0B82644B1EC007CF5D6 /* CAAtomicStack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAAtomicStack.h; sourceTree = "<group>"; };
|
||||
8B62A0B92644B1EC007CF5D6 /* CAReferenceCounted.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAReferenceCounted.h; sourceTree = "<group>"; };
|
||||
8B62A0BA2644B1EC007CF5D6 /* CACFMachPort.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CACFMachPort.cpp; sourceTree = "<group>"; };
|
||||
8B62A0BB2644B1EC007CF5D6 /* CABufferList.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CABufferList.cpp; sourceTree = "<group>"; };
|
||||
8B62A0BC2644B1EC007CF5D6 /* CAMutex.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAMutex.cpp; sourceTree = "<group>"; };
|
||||
8B62A0BD2644B1EC007CF5D6 /* CADebugger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CADebugger.cpp; sourceTree = "<group>"; };
|
||||
8B62A0BE2644B1EC007CF5D6 /* CABundleLocker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CABundleLocker.cpp; sourceTree = "<group>"; };
|
||||
8B62A0BF2644B1EC007CF5D6 /* CAAudioFileFormats.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAAudioFileFormats.cpp; sourceTree = "<group>"; };
|
||||
8B62A0C02644B1EC007CF5D6 /* CAMath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CAMath.h; sourceTree = "<group>"; };
|
||||
8B62A0C12644B1EC007CF5D6 /* CACFArray.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CACFArray.cpp; sourceTree = "<group>"; };
|
||||
8B62A0C22644B1EC007CF5D6 /* CACFMessagePort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CACFMessagePort.h; sourceTree = "<group>"; };
|
||||
8B62A0C32644B1EC007CF5D6 /* CAAudioValueRange.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAAudioValueRange.cpp; sourceTree = "<group>"; };
|
||||
8B62A0C42644B1EC007CF5D6 /* CAAudioUnit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CAAudioUnit.cpp; sourceTree = "<group>"; };
|
||||
8B62A0C82644B1EC007CF5D6 /* AUViewLocalizedStringKeys.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUViewLocalizedStringKeys.h; sourceTree = "<group>"; };
|
||||
8B62A0CA2644B1EC007CF5D6 /* ComponentBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ComponentBase.cpp; sourceTree = "<group>"; };
|
||||
8B62A0CB2644B1EC007CF5D6 /* AUScopeElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AUScopeElement.cpp; sourceTree = "<group>"; };
|
||||
8B62A0CC2644B1EC007CF5D6 /* ComponentBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ComponentBase.h; sourceTree = "<group>"; };
|
||||
8B62A0CD2644B1EC007CF5D6 /* AUBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AUBase.cpp; sourceTree = "<group>"; };
|
||||
8B62A0CE2644B1EC007CF5D6 /* AUInputElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUInputElement.h; sourceTree = "<group>"; };
|
||||
8B62A0CF2644B1EC007CF5D6 /* AUBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUBase.h; sourceTree = "<group>"; };
|
||||
8B62A0D02644B1EC007CF5D6 /* AUPlugInDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUPlugInDispatch.h; sourceTree = "<group>"; };
|
||||
8B62A0D12644B1EC007CF5D6 /* AUDispatch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUDispatch.h; sourceTree = "<group>"; };
|
||||
8B62A0D22644B1EC007CF5D6 /* AUOutputElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AUOutputElement.cpp; sourceTree = "<group>"; };
|
||||
8B62A0D32644B1EC007CF5D6 /* AUResources.r */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.rez; path = AUResources.r; sourceTree = "<group>"; };
|
||||
8B62A0D42644B1EC007CF5D6 /* AUPlugInDispatch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AUPlugInDispatch.cpp; sourceTree = "<group>"; };
|
||||
8B62A0D52644B1EC007CF5D6 /* AUOutputElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUOutputElement.h; sourceTree = "<group>"; };
|
||||
8B62A0D62644B1EC007CF5D6 /* AUDispatch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AUDispatch.cpp; sourceTree = "<group>"; };
|
||||
8B62A0D72644B1EC007CF5D6 /* AUScopeElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUScopeElement.h; sourceTree = "<group>"; };
|
||||
8B62A0D82644B1EC007CF5D6 /* AUInputElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AUInputElement.cpp; sourceTree = "<group>"; };
|
||||
8B62A0DA2644B1EC007CF5D6 /* AUEffectBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AUEffectBase.cpp; sourceTree = "<group>"; };
|
||||
8B62A0DB2644B1EC007CF5D6 /* AUEffectBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUEffectBase.h; sourceTree = "<group>"; };
|
||||
8B62A0DD2644B1EC007CF5D6 /* AUTimestampGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUTimestampGenerator.h; sourceTree = "<group>"; };
|
||||
8B62A0DE2644B1EC007CF5D6 /* AUBaseHelper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AUBaseHelper.cpp; sourceTree = "<group>"; };
|
||||
8B62A0DF2644B1EC007CF5D6 /* AUSilentTimeout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUSilentTimeout.h; sourceTree = "<group>"; };
|
||||
8B62A0E02644B1EC007CF5D6 /* AUInputFormatConverter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUInputFormatConverter.h; sourceTree = "<group>"; };
|
||||
8B62A0E12644B1EC007CF5D6 /* AUTimestampGenerator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AUTimestampGenerator.cpp; sourceTree = "<group>"; };
|
||||
8B62A0E22644B1EC007CF5D6 /* AUBuffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AUBuffer.cpp; sourceTree = "<group>"; };
|
||||
8B62A0E32644B1EC007CF5D6 /* AUMIDIDefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUMIDIDefs.h; sourceTree = "<group>"; };
|
||||
8B62A0E42644B1EC007CF5D6 /* AUBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUBuffer.h; sourceTree = "<group>"; };
|
||||
8B62A0E52644B1EC007CF5D6 /* AUBaseHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AUBaseHelper.h; sourceTree = "<group>"; };
|
||||
8B62A16A2644B345007CF5D6 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
||||
8BA05A660720730100365D66 /* Infinity2.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = Infinity2.cpp; sourceTree = "<group>"; };
|
||||
8BA05A670720730100365D66 /* Infinity2.exp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.exports; path = Infinity2.exp; sourceTree = "<group>"; };
|
||||
8BA05A680720730100365D66 /* Infinity2.r */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.rez; path = Infinity2.r; sourceTree = "<group>"; };
|
||||
8BA05A690720730100365D66 /* Infinity2Version.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Infinity2Version.h; sourceTree = "<group>"; };
|
||||
8BA05AF9072074E100365D66 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = /System/Library/Frameworks/AudioToolbox.framework; sourceTree = "<absolute>"; };
|
||||
8BA05AFA072074E100365D66 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = /System/Library/Frameworks/AudioUnit.framework; sourceTree = "<absolute>"; };
|
||||
8BA05B01072074F900365D66 /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = /System/Library/Frameworks/CoreServices.framework; sourceTree = "<absolute>"; };
|
||||
8BC6025B073B072D006C4272 /* Infinity2.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Infinity2.h; sourceTree = "<group>"; };
|
||||
8D01CCD10486CAD60068D4B7 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
|
||||
8D01CCD20486CAD60068D4B7 /* Infinity2.component */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Infinity2.component; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
8D01CCCD0486CAD60068D4B7 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
8BA05AFC072074E100365D66 /* AudioToolbox.framework in Frameworks */,
|
||||
8BA05AFD072074E100365D66 /* AudioUnit.framework in Frameworks */,
|
||||
8BA05B02072074F900365D66 /* CoreServices.framework in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
089C166AFE841209C02AAC07 /* Infinity2 */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08FB77ADFE841716C02AAC07 /* Source */,
|
||||
089C167CFE841241C02AAC07 /* Resources */,
|
||||
089C1671FE841209C02AAC07 /* External Frameworks and Libraries */,
|
||||
19C28FB4FE9D528D11CA2CBB /* Products */,
|
||||
);
|
||||
name = Infinity2;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8B5C7FBF076FB2C200A15F61 /* CoreAudio.framework */,
|
||||
8BA05B01072074F900365D66 /* CoreServices.framework */,
|
||||
8BA05AF9072074E100365D66 /* AudioToolbox.framework */,
|
||||
8BA05AFA072074E100365D66 /* AudioUnit.framework */,
|
||||
);
|
||||
name = "External Frameworks and Libraries";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
089C167CFE841241C02AAC07 /* Resources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8D01CCD10486CAD60068D4B7 /* Info.plist */,
|
||||
089C167DFE841241C02AAC07 /* InfoPlist.strings */,
|
||||
);
|
||||
name = Resources;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08FB77ADFE841716C02AAC07 /* Source */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8B62A05C2644B1EC007CF5D6 /* CA_SDK */,
|
||||
8BA05A56072072A900365D66 /* AU Source */,
|
||||
);
|
||||
name = Source;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
19C28FB4FE9D528D11CA2CBB /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8D01CCD20486CAD60068D4B7 /* Infinity2.component */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8B62A05C2644B1EC007CF5D6 /* CA_SDK */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8B62A05D2644B1EC007CF5D6 /* PublicUtility */,
|
||||
8B62A0C52644B1EC007CF5D6 /* AudioUnits */,
|
||||
);
|
||||
name = CA_SDK;
|
||||
path = ../../../../CA_SDK;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8B62A05D2644B1EC007CF5D6 /* PublicUtility */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8B62A05E2644B1EC007CF5D6 /* CAExtAudioFile.h */,
|
||||
8B62A05F2644B1EC007CF5D6 /* CACFMachPort.h */,
|
||||
8B62A0602644B1EC007CF5D6 /* CABool.h */,
|
||||
8B62A0612644B1EC007CF5D6 /* CAComponent.cpp */,
|
||||
8B62A0622644B1EC007CF5D6 /* CADebugger.h */,
|
||||
8B62A0632644B1EC007CF5D6 /* CACFNumber.cpp */,
|
||||
8B62A0642644B1EC007CF5D6 /* CAGuard.h */,
|
||||
8B62A0652644B1EC007CF5D6 /* CAAtomic.h */,
|
||||
8B62A0662644B1EC007CF5D6 /* CAStreamBasicDescription.h */,
|
||||
8B62A0672644B1EC007CF5D6 /* CACFObject.h */,
|
||||
8B62A0682644B1EC007CF5D6 /* CAStreamRangedDescription.h */,
|
||||
8B62A0692644B1EC007CF5D6 /* CATokenMap.h */,
|
||||
8B62A06A2644B1EC007CF5D6 /* CAComponent.h */,
|
||||
8B62A06B2644B1EC007CF5D6 /* CAAudioBufferList.h */,
|
||||
8B62A06C2644B1EC007CF5D6 /* CAAudioUnit.h */,
|
||||
8B62A06D2644B1EC007CF5D6 /* CAAUParameter.h */,
|
||||
8B62A06E2644B1EC007CF5D6 /* CAException.h */,
|
||||
8B62A06F2644B1EC007CF5D6 /* CAAUProcessor.cpp */,
|
||||
8B62A0702644B1EC007CF5D6 /* CAAUProcessor.h */,
|
||||
8B62A0712644B1EC007CF5D6 /* CAProcess.h */,
|
||||
8B62A0722644B1EC007CF5D6 /* CACFDictionary.h */,
|
||||
8B62A0732644B1EC007CF5D6 /* CAPThread.h */,
|
||||
8B62A0742644B1EC007CF5D6 /* CAAUParameter.cpp */,
|
||||
8B62A0752644B1EC007CF5D6 /* CAAudioTimeStamp.h */,
|
||||
8B62A0762644B1EC007CF5D6 /* CAFilePathUtils.cpp */,
|
||||
8B62A0772644B1EC007CF5D6 /* CAAudioValueRange.h */,
|
||||
8B62A0782644B1EC007CF5D6 /* CAVectorUnitTypes.h */,
|
||||
8B62A0792644B1EC007CF5D6 /* CAAudioChannelLayoutObject.cpp */,
|
||||
8B62A07A2644B1EC007CF5D6 /* CAGuard.cpp */,
|
||||
8B62A07B2644B1EC007CF5D6 /* CACFNumber.h */,
|
||||
8B62A07C2644B1EC007CF5D6 /* CACFDistributedNotification.cpp */,
|
||||
8B62A07D2644B1EC007CF5D6 /* CACFString.h */,
|
||||
8B62A07E2644B1EC007CF5D6 /* CAAUMIDIMapManager.cpp */,
|
||||
8B62A07F2644B1EC007CF5D6 /* CAComponentDescription.cpp */,
|
||||
8B62A0802644B1EC007CF5D6 /* CAHostTimeBase.h */,
|
||||
8B62A0812644B1EC007CF5D6 /* CADebugMacros.cpp */,
|
||||
8B62A0822644B1EC007CF5D6 /* CAAudioFileFormats.h */,
|
||||
8B62A0832644B1EC007CF5D6 /* CAAUMIDIMapManager.h */,
|
||||
8B62A0842644B1EC007CF5D6 /* CACFDictionary.cpp */,
|
||||
8B62A0852644B1EC007CF5D6 /* CAMutex.h */,
|
||||
8B62A0862644B1EC007CF5D6 /* CACFString.cpp */,
|
||||
8B62A0872644B1EC007CF5D6 /* CASettingsStorage.h */,
|
||||
8B62A0882644B1EC007CF5D6 /* CADebugPrintf.h */,
|
||||
8B62A0892644B1EC007CF5D6 /* CAXException.cpp */,
|
||||
8B62A08A2644B1EC007CF5D6 /* CAAUMIDIMap.h */,
|
||||
8B62A08B2644B1EC007CF5D6 /* AUParamInfo.h */,
|
||||
8B62A08C2644B1EC007CF5D6 /* CABitOperations.h */,
|
||||
8B62A08D2644B1EC007CF5D6 /* CACFPreferences.cpp */,
|
||||
8B62A08E2644B1EC007CF5D6 /* CABundleLocker.h */,
|
||||
8B62A08F2644B1EC007CF5D6 /* CAPropertyAddress.h */,
|
||||
8B62A0902644B1EC007CF5D6 /* CAXException.h */,
|
||||
8B62A0912644B1EC007CF5D6 /* CAAudioChannelLayout.cpp */,
|
||||
8B62A0922644B1EC007CF5D6 /* CAThreadSafeList.h */,
|
||||
8B62A0932644B1EC007CF5D6 /* CAAudioUnitOutputCapturer.h */,
|
||||
8B62A0942644B1EC007CF5D6 /* AUParamInfo.cpp */,
|
||||
8B62A0952644B1EC007CF5D6 /* CASharedLibrary.cpp */,
|
||||
8B62A0962644B1EC007CF5D6 /* CAAUMIDIMap.cpp */,
|
||||
8B62A0972644B1EC007CF5D6 /* CALogMacros.h */,
|
||||
8B62A0982644B1EC007CF5D6 /* CACFMessagePort.cpp */,
|
||||
8B62A0992644B1EC007CF5D6 /* CARingBuffer.h */,
|
||||
8B62A09A2644B1EC007CF5D6 /* AUOutputBL.cpp */,
|
||||
8B62A09B2644B1EC007CF5D6 /* CABufferList.h */,
|
||||
8B62A09C2644B1EC007CF5D6 /* CASharedLibrary.h */,
|
||||
8B62A09D2644B1EC007CF5D6 /* CACFData.h */,
|
||||
8B62A09E2644B1EC007CF5D6 /* CAStreamRangedDescription.cpp */,
|
||||
8B62A09F2644B1EC007CF5D6 /* CAPThread.cpp */,
|
||||
8B62A0A02644B1EC007CF5D6 /* CAAutoDisposer.h */,
|
||||
8B62A0A12644B1EC007CF5D6 /* CACFPreferences.h */,
|
||||
8B62A0A22644B1EC007CF5D6 /* CAVectorUnit.cpp */,
|
||||
8B62A0A32644B1EC007CF5D6 /* CAComponentDescription.h */,
|
||||
8B62A0A42644B1EC007CF5D6 /* CADebugMacros.h */,
|
||||
8B62A0A52644B1EC007CF5D6 /* AUOutputBL.h */,
|
||||
8B62A0A62644B1EC007CF5D6 /* CADebugPrintf.cpp */,
|
||||
8B62A0A72644B1EC007CF5D6 /* CARingBuffer.cpp */,
|
||||
8B62A0A82644B1EC007CF5D6 /* CACFPlugIn.h */,
|
||||
8B62A0A92644B1EC007CF5D6 /* CASettingsStorage.cpp */,
|
||||
8B62A0AA2644B1EC007CF5D6 /* CAMixMap.h */,
|
||||
8B62A0AB2644B1EC007CF5D6 /* CACFDistributedNotification.h */,
|
||||
8B62A0AC2644B1EC007CF5D6 /* CAFilePathUtils.h */,
|
||||
8B62A0AD2644B1EC007CF5D6 /* CATink.h */,
|
||||
8B62A0AE2644B1EC007CF5D6 /* CAStreamBasicDescription.cpp */,
|
||||
8B62A0AF2644B1EC007CF5D6 /* CAAudioChannelLayout.h */,
|
||||
8B62A0B02644B1EC007CF5D6 /* CAProcess.cpp */,
|
||||
8B62A0B12644B1EC007CF5D6 /* CAHostTimeBase.cpp */,
|
||||
8B62A0B22644B1EC007CF5D6 /* CAPersistence.cpp */,
|
||||
8B62A0B32644B1EC007CF5D6 /* CAAudioBufferList.cpp */,
|
||||
8B62A0B42644B1EC007CF5D6 /* CAAudioTimeStamp.cpp */,
|
||||
8B62A0B52644B1EC007CF5D6 /* CAVectorUnit.h */,
|
||||
8B62A0B62644B1EC007CF5D6 /* CAByteOrder.h */,
|
||||
8B62A0B72644B1EC007CF5D6 /* CACFArray.h */,
|
||||
8B62A0B82644B1EC007CF5D6 /* CAAtomicStack.h */,
|
||||
8B62A0B92644B1EC007CF5D6 /* CAReferenceCounted.h */,
|
||||
8B62A0BA2644B1EC007CF5D6 /* CACFMachPort.cpp */,
|
||||
8B62A0BB2644B1EC007CF5D6 /* CABufferList.cpp */,
|
||||
8B62A0BC2644B1EC007CF5D6 /* CAMutex.cpp */,
|
||||
8B62A0BD2644B1EC007CF5D6 /* CADebugger.cpp */,
|
||||
8B62A0BE2644B1EC007CF5D6 /* CABundleLocker.cpp */,
|
||||
8B62A0BF2644B1EC007CF5D6 /* CAAudioFileFormats.cpp */,
|
||||
8B62A0C02644B1EC007CF5D6 /* CAMath.h */,
|
||||
8B62A0C12644B1EC007CF5D6 /* CACFArray.cpp */,
|
||||
8B62A0C22644B1EC007CF5D6 /* CACFMessagePort.h */,
|
||||
8B62A0C32644B1EC007CF5D6 /* CAAudioValueRange.cpp */,
|
||||
8B62A0C42644B1EC007CF5D6 /* CAAudioUnit.cpp */,
|
||||
);
|
||||
path = PublicUtility;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8B62A0C52644B1EC007CF5D6 /* AudioUnits */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8B62A0C62644B1EC007CF5D6 /* AUPublic */,
|
||||
);
|
||||
path = AudioUnits;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8B62A0C62644B1EC007CF5D6 /* AUPublic */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8B62A0C72644B1EC007CF5D6 /* AUViewBase */,
|
||||
8B62A0C92644B1EC007CF5D6 /* AUBase */,
|
||||
8B62A0D92644B1EC007CF5D6 /* OtherBases */,
|
||||
8B62A0DC2644B1EC007CF5D6 /* Utility */,
|
||||
);
|
||||
path = AUPublic;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8B62A0C72644B1EC007CF5D6 /* AUViewBase */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8B62A0C82644B1EC007CF5D6 /* AUViewLocalizedStringKeys.h */,
|
||||
);
|
||||
path = AUViewBase;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8B62A0C92644B1EC007CF5D6 /* AUBase */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8B62A0CA2644B1EC007CF5D6 /* ComponentBase.cpp */,
|
||||
8B62A0CB2644B1EC007CF5D6 /* AUScopeElement.cpp */,
|
||||
8B62A0CC2644B1EC007CF5D6 /* ComponentBase.h */,
|
||||
8B62A0CD2644B1EC007CF5D6 /* AUBase.cpp */,
|
||||
8B62A0CE2644B1EC007CF5D6 /* AUInputElement.h */,
|
||||
8B62A0CF2644B1EC007CF5D6 /* AUBase.h */,
|
||||
8B62A0D02644B1EC007CF5D6 /* AUPlugInDispatch.h */,
|
||||
8B62A0D12644B1EC007CF5D6 /* AUDispatch.h */,
|
||||
8B62A0D22644B1EC007CF5D6 /* AUOutputElement.cpp */,
|
||||
8B62A0D32644B1EC007CF5D6 /* AUResources.r */,
|
||||
8B62A0D42644B1EC007CF5D6 /* AUPlugInDispatch.cpp */,
|
||||
8B62A0D52644B1EC007CF5D6 /* AUOutputElement.h */,
|
||||
8B62A0D62644B1EC007CF5D6 /* AUDispatch.cpp */,
|
||||
8B62A0D72644B1EC007CF5D6 /* AUScopeElement.h */,
|
||||
8B62A0D82644B1EC007CF5D6 /* AUInputElement.cpp */,
|
||||
);
|
||||
path = AUBase;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8B62A0D92644B1EC007CF5D6 /* OtherBases */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8B62A0DA2644B1EC007CF5D6 /* AUEffectBase.cpp */,
|
||||
8B62A0DB2644B1EC007CF5D6 /* AUEffectBase.h */,
|
||||
);
|
||||
path = OtherBases;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8B62A0DC2644B1EC007CF5D6 /* Utility */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8B62A0DD2644B1EC007CF5D6 /* AUTimestampGenerator.h */,
|
||||
8B62A0DE2644B1EC007CF5D6 /* AUBaseHelper.cpp */,
|
||||
8B62A0DF2644B1EC007CF5D6 /* AUSilentTimeout.h */,
|
||||
8B62A0E02644B1EC007CF5D6 /* AUInputFormatConverter.h */,
|
||||
8B62A0E12644B1EC007CF5D6 /* AUTimestampGenerator.cpp */,
|
||||
8B62A0E22644B1EC007CF5D6 /* AUBuffer.cpp */,
|
||||
8B62A0E32644B1EC007CF5D6 /* AUMIDIDefs.h */,
|
||||
8B62A0E42644B1EC007CF5D6 /* AUBuffer.h */,
|
||||
8B62A0E52644B1EC007CF5D6 /* AUBaseHelper.h */,
|
||||
);
|
||||
path = Utility;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8BA05A56072072A900365D66 /* AU Source */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8BC6025B073B072D006C4272 /* Infinity2.h */,
|
||||
8BA05A660720730100365D66 /* Infinity2.cpp */,
|
||||
8BA05A670720730100365D66 /* Infinity2.exp */,
|
||||
8BA05A680720730100365D66 /* Infinity2.r */,
|
||||
8BA05A690720730100365D66 /* Infinity2Version.h */,
|
||||
);
|
||||
name = "AU Source";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXHeadersBuildPhase section */
|
||||
8D01CCC70486CAD60068D4B7 /* Headers */ = {
|
||||
isa = PBXHeadersBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
8B62A1162644B1EC007CF5D6 /* CABundleLocker.h in Headers */,
|
||||
8B62A1372644B1EC007CF5D6 /* CAAudioChannelLayout.h in Headers */,
|
||||
8B62A12D2644B1EC007CF5D6 /* AUOutputBL.h in Headers */,
|
||||
8B62A1082644B1EC007CF5D6 /* CAHostTimeBase.h in Headers */,
|
||||
8B62A1502644B1EC007CF5D6 /* ComponentBase.h in Headers */,
|
||||
8B62A1402644B1EC007CF5D6 /* CAAtomicStack.h in Headers */,
|
||||
8B62A0FD2644B1EC007CF5D6 /* CAAudioTimeStamp.h in Headers */,
|
||||
8B62A11A2644B1EC007CF5D6 /* CAThreadSafeList.h in Headers */,
|
||||
8B62A0F52644B1EC007CF5D6 /* CAAUParameter.h in Headers */,
|
||||
8B62A1672644B1EC007CF5D6 /* AUBaseHelper.h in Headers */,
|
||||
8B62A15F2644B1EC007CF5D6 /* AUTimestampGenerator.h in Headers */,
|
||||
8B62A1102644B1EC007CF5D6 /* CADebugPrintf.h in Headers */,
|
||||
8B62A14A2644B1EC007CF5D6 /* CACFMessagePort.h in Headers */,
|
||||
8B62A0F82644B1EC007CF5D6 /* CAAUProcessor.h in Headers */,
|
||||
8B62A0F42644B1EC007CF5D6 /* CAAudioUnit.h in Headers */,
|
||||
8B62A14D2644B1EC007CF5D6 /* AUViewLocalizedStringKeys.h in Headers */,
|
||||
8B62A1332644B1EC007CF5D6 /* CACFDistributedNotification.h in Headers */,
|
||||
8B62A0F22644B1EC007CF5D6 /* CAComponent.h in Headers */,
|
||||
8B62A1002644B1EC007CF5D6 /* CAVectorUnitTypes.h in Headers */,
|
||||
8BA05A6E0720730100365D66 /* Infinity2Version.h in Headers */,
|
||||
8B62A1342644B1EC007CF5D6 /* CAFilePathUtils.h in Headers */,
|
||||
8B62A0F62644B1EC007CF5D6 /* CAException.h in Headers */,
|
||||
8B62A0ED2644B1EC007CF5D6 /* CAAtomic.h in Headers */,
|
||||
8B62A0EC2644B1EC007CF5D6 /* CAGuard.h in Headers */,
|
||||
8B62A1522644B1EC007CF5D6 /* AUInputElement.h in Headers */,
|
||||
8B62A1292644B1EC007CF5D6 /* CACFPreferences.h in Headers */,
|
||||
8B62A13E2644B1EC007CF5D6 /* CAByteOrder.h in Headers */,
|
||||
8B62A1212644B1EC007CF5D6 /* CARingBuffer.h in Headers */,
|
||||
8B62A0E82644B1EC007CF5D6 /* CABool.h in Headers */,
|
||||
8B62A10D2644B1EC007CF5D6 /* CAMutex.h in Headers */,
|
||||
8B62A1532644B1EC007CF5D6 /* AUBase.h in Headers */,
|
||||
8BC6025C073B072D006C4272 /* Infinity2.h in Headers */,
|
||||
8B62A1052644B1EC007CF5D6 /* CACFString.h in Headers */,
|
||||
8B62A1242644B1EC007CF5D6 /* CASharedLibrary.h in Headers */,
|
||||
8B62A0F12644B1EC007CF5D6 /* CATokenMap.h in Headers */,
|
||||
8B62A0E62644B1EC007CF5D6 /* CAExtAudioFile.h in Headers */,
|
||||
8B62A0FB2644B1EC007CF5D6 /* CAPThread.h in Headers */,
|
||||
8B62A1172644B1EC007CF5D6 /* CAPropertyAddress.h in Headers */,
|
||||
8B62A1412644B1EC007CF5D6 /* CAReferenceCounted.h in Headers */,
|
||||
8B62A1662644B1EC007CF5D6 /* AUBuffer.h in Headers */,
|
||||
8B62A1482644B1EC007CF5D6 /* CAMath.h in Headers */,
|
||||
8B62A1282644B1EC007CF5D6 /* CAAutoDisposer.h in Headers */,
|
||||
8B62A0EF2644B1EC007CF5D6 /* CACFObject.h in Headers */,
|
||||
8B62A10F2644B1EC007CF5D6 /* CASettingsStorage.h in Headers */,
|
||||
8B62A1182644B1EC007CF5D6 /* CAXException.h in Headers */,
|
||||
8B62A1352644B1EC007CF5D6 /* CATink.h in Headers */,
|
||||
8B62A1622644B1EC007CF5D6 /* AUInputFormatConverter.h in Headers */,
|
||||
8B62A13D2644B1EC007CF5D6 /* CAVectorUnit.h in Headers */,
|
||||
8B62A0F92644B1EC007CF5D6 /* CAProcess.h in Headers */,
|
||||
8B62A0FF2644B1EC007CF5D6 /* CAAudioValueRange.h in Headers */,
|
||||
8B62A1142644B1EC007CF5D6 /* CABitOperations.h in Headers */,
|
||||
8B62A10A2644B1EC007CF5D6 /* CAAudioFileFormats.h in Headers */,
|
||||
8B62A1032644B1EC007CF5D6 /* CACFNumber.h in Headers */,
|
||||
8B62A11B2644B1EC007CF5D6 /* CAAudioUnitOutputCapturer.h in Headers */,
|
||||
8B62A12C2644B1EC007CF5D6 /* CADebugMacros.h in Headers */,
|
||||
8B62A1652644B1EC007CF5D6 /* AUMIDIDefs.h in Headers */,
|
||||
8B62A1252644B1EC007CF5D6 /* CACFData.h in Headers */,
|
||||
8B62A0EE2644B1EC007CF5D6 /* CAStreamBasicDescription.h in Headers */,
|
||||
8B62A1542644B1EC007CF5D6 /* AUPlugInDispatch.h in Headers */,
|
||||
8B62A0F02644B1EC007CF5D6 /* CAStreamRangedDescription.h in Headers */,
|
||||
8B62A1302644B1EC007CF5D6 /* CACFPlugIn.h in Headers */,
|
||||
8B62A0F32644B1EC007CF5D6 /* CAAudioBufferList.h in Headers */,
|
||||
8B62A10B2644B1EC007CF5D6 /* CAAUMIDIMapManager.h in Headers */,
|
||||
8B62A15E2644B1EC007CF5D6 /* AUEffectBase.h in Headers */,
|
||||
8B62A0FA2644B1EC007CF5D6 /* CACFDictionary.h in Headers */,
|
||||
8B62A15B2644B1EC007CF5D6 /* AUScopeElement.h in Headers */,
|
||||
8B62A12B2644B1EC007CF5D6 /* CAComponentDescription.h in Headers */,
|
||||
8B62A1612644B1EC007CF5D6 /* AUSilentTimeout.h in Headers */,
|
||||
8B62A1232644B1EC007CF5D6 /* CABufferList.h in Headers */,
|
||||
8B62A1552644B1EC007CF5D6 /* AUDispatch.h in Headers */,
|
||||
8B62A1592644B1EC007CF5D6 /* AUOutputElement.h in Headers */,
|
||||
8B62A11F2644B1EC007CF5D6 /* CALogMacros.h in Headers */,
|
||||
8B62A1132644B1EC007CF5D6 /* AUParamInfo.h in Headers */,
|
||||
8B62A1322644B1EC007CF5D6 /* CAMixMap.h in Headers */,
|
||||
8B62A13F2644B1EC007CF5D6 /* CACFArray.h in Headers */,
|
||||
8B62A0E72644B1EC007CF5D6 /* CACFMachPort.h in Headers */,
|
||||
8B62A1122644B1EC007CF5D6 /* CAAUMIDIMap.h in Headers */,
|
||||
8B62A0EA2644B1EC007CF5D6 /* CADebugger.h in Headers */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXHeadersBuildPhase section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
8D01CCC60486CAD60068D4B7 /* Infinity2 */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 3E4BA243089833B7007656EC /* Build configuration list for PBXNativeTarget "Infinity2" */;
|
||||
buildPhases = (
|
||||
8D01CCC70486CAD60068D4B7 /* Headers */,
|
||||
8D01CCC90486CAD60068D4B7 /* Resources */,
|
||||
8D01CCCB0486CAD60068D4B7 /* Sources */,
|
||||
8D01CCCD0486CAD60068D4B7 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = Infinity2;
|
||||
productInstallPath = "$(HOME)/Library/Bundles";
|
||||
productName = Infinity2;
|
||||
productReference = 8D01CCD20486CAD60068D4B7 /* Infinity2.component */;
|
||||
productType = "com.apple.product-type.bundle";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
089C1669FE841209C02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 1240;
|
||||
};
|
||||
buildConfigurationList = 3E4BA247089833B7007656EC /* Build configuration list for PBXProject "Infinity2" */;
|
||||
compatibilityVersion = "Xcode 3.1";
|
||||
developmentRegion = en;
|
||||
hasScannedForEncodings = 1;
|
||||
knownRegions = (
|
||||
ja,
|
||||
en,
|
||||
de,
|
||||
Base,
|
||||
fr,
|
||||
);
|
||||
mainGroup = 089C166AFE841209C02AAC07 /* Infinity2 */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
8D01CCC60486CAD60068D4B7 /* Infinity2 */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
8D01CCC90486CAD60068D4B7 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
8D01CCCA0486CAD60068D4B7 /* InfoPlist.strings in Resources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
8D01CCCB0486CAD60068D4B7 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
8B62A1222644B1EC007CF5D6 /* AUOutputBL.cpp in Sources */,
|
||||
8B62A1472644B1EC007CF5D6 /* CAAudioFileFormats.cpp in Sources */,
|
||||
8B62A1392644B1EC007CF5D6 /* CAHostTimeBase.cpp in Sources */,
|
||||
8B62A1112644B1EC007CF5D6 /* CAXException.cpp in Sources */,
|
||||
8B62A13B2644B1EC007CF5D6 /* CAAudioBufferList.cpp in Sources */,
|
||||
8B62A0FE2644B1EC007CF5D6 /* CAFilePathUtils.cpp in Sources */,
|
||||
8B62A0FC2644B1EC007CF5D6 /* CAAUParameter.cpp in Sources */,
|
||||
8B62A11E2644B1EC007CF5D6 /* CAAUMIDIMap.cpp in Sources */,
|
||||
8B62A14B2644B1EC007CF5D6 /* CAAudioValueRange.cpp in Sources */,
|
||||
8B62A15A2644B1EC007CF5D6 /* AUDispatch.cpp in Sources */,
|
||||
8B62A1152644B1EC007CF5D6 /* CACFPreferences.cpp in Sources */,
|
||||
8B62A1582644B1EC007CF5D6 /* AUPlugInDispatch.cpp in Sources */,
|
||||
8B62A0F72644B1EC007CF5D6 /* CAAUProcessor.cpp in Sources */,
|
||||
8B62A10C2644B1EC007CF5D6 /* CACFDictionary.cpp in Sources */,
|
||||
8B62A1602644B1EC007CF5D6 /* AUBaseHelper.cpp in Sources */,
|
||||
8B62A1452644B1EC007CF5D6 /* CADebugger.cpp in Sources */,
|
||||
8B62A1192644B1EC007CF5D6 /* CAAudioChannelLayout.cpp in Sources */,
|
||||
8B62A11C2644B1EC007CF5D6 /* AUParamInfo.cpp in Sources */,
|
||||
8B62A13A2644B1EC007CF5D6 /* CAPersistence.cpp in Sources */,
|
||||
8B62A12E2644B1EC007CF5D6 /* CADebugPrintf.cpp in Sources */,
|
||||
8B62A1632644B1EC007CF5D6 /* AUTimestampGenerator.cpp in Sources */,
|
||||
8B62A1362644B1EC007CF5D6 /* CAStreamBasicDescription.cpp in Sources */,
|
||||
8B62A1062644B1EC007CF5D6 /* CAAUMIDIMapManager.cpp in Sources */,
|
||||
8B62A1312644B1EC007CF5D6 /* CASettingsStorage.cpp in Sources */,
|
||||
8B62A1562644B1EC007CF5D6 /* AUOutputElement.cpp in Sources */,
|
||||
8B62A1022644B1EC007CF5D6 /* CAGuard.cpp in Sources */,
|
||||
8BA05A6B0720730100365D66 /* Infinity2.cpp in Sources */,
|
||||
8B62A1442644B1EC007CF5D6 /* CAMutex.cpp in Sources */,
|
||||
8B62A15D2644B1EC007CF5D6 /* AUEffectBase.cpp in Sources */,
|
||||
8B62A1422644B1EC007CF5D6 /* CACFMachPort.cpp in Sources */,
|
||||
8B62A1512644B1EC007CF5D6 /* AUBase.cpp in Sources */,
|
||||
8B62A11D2644B1EC007CF5D6 /* CASharedLibrary.cpp in Sources */,
|
||||
8B62A1042644B1EC007CF5D6 /* CACFDistributedNotification.cpp in Sources */,
|
||||
8B62A1072644B1EC007CF5D6 /* CAComponentDescription.cpp in Sources */,
|
||||
8B62A10E2644B1EC007CF5D6 /* CACFString.cpp in Sources */,
|
||||
8B62A14E2644B1EC007CF5D6 /* ComponentBase.cpp in Sources */,
|
||||
8B62A12F2644B1EC007CF5D6 /* CARingBuffer.cpp in Sources */,
|
||||
8B62A14F2644B1EC007CF5D6 /* AUScopeElement.cpp in Sources */,
|
||||
8B62A14C2644B1EC007CF5D6 /* CAAudioUnit.cpp in Sources */,
|
||||
8B62A1492644B1EC007CF5D6 /* CACFArray.cpp in Sources */,
|
||||
8B62A1462644B1EC007CF5D6 /* CABundleLocker.cpp in Sources */,
|
||||
8B62A1382644B1EC007CF5D6 /* CAProcess.cpp in Sources */,
|
||||
8B62A1262644B1EC007CF5D6 /* CAStreamRangedDescription.cpp in Sources */,
|
||||
8B62A1272644B1EC007CF5D6 /* CAPThread.cpp in Sources */,
|
||||
8B62A0E92644B1EC007CF5D6 /* CAComponent.cpp in Sources */,
|
||||
8B62A1012644B1EC007CF5D6 /* CAAudioChannelLayoutObject.cpp in Sources */,
|
||||
8B62A13C2644B1EC007CF5D6 /* CAAudioTimeStamp.cpp in Sources */,
|
||||
8B62A1432644B1EC007CF5D6 /* CABufferList.cpp in Sources */,
|
||||
8B62A1202644B1EC007CF5D6 /* CACFMessagePort.cpp in Sources */,
|
||||
8B62A12A2644B1EC007CF5D6 /* CAVectorUnit.cpp in Sources */,
|
||||
8B62A15C2644B1EC007CF5D6 /* AUInputElement.cpp in Sources */,
|
||||
8B62A1642644B1EC007CF5D6 /* AUBuffer.cpp in Sources */,
|
||||
8B62A1092644B1EC007CF5D6 /* CADebugMacros.cpp in Sources */,
|
||||
8B62A0EB2644B1EC007CF5D6 /* CACFNumber.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
089C167DFE841241C02AAC07 /* InfoPlist.strings */ = {
|
||||
isa = PBXVariantGroup;
|
||||
children = (
|
||||
8B62A16A2644B345007CF5D6 /* en */,
|
||||
);
|
||||
name = InfoPlist.strings;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
3E4BA244089833B7007656EC /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD)";
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CODE_SIGN_IDENTITY = "Developer ID Application";
|
||||
DEVELOPMENT_TEAM = 9BMAKYA76W;
|
||||
EXPORTED_SYMBOLS_FILE = Infinity2.exp;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GENERATE_PKGINFO_FILE = YES;
|
||||
INFOPLIST_FILE = Info.plist;
|
||||
INSTALL_PATH = "$(HOME)/Library/Audio/Plug-Ins/Components/";
|
||||
LIBRARY_STYLE = Bundle;
|
||||
MACOSX_DEPLOYMENT_TARGET = 11.1;
|
||||
OTHER_LDFLAGS = "-bundle";
|
||||
OTHER_REZFLAGS = "";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.airwindows.audiounit.${PRODUCT_NAME:identifier}";
|
||||
PRODUCT_NAME = Infinity2;
|
||||
SDKROOT = macosx;
|
||||
STRIP_STYLE = debugging;
|
||||
WRAPPER_EXTENSION = component;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
3E4BA245089833B7007656EC /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD)";
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CODE_SIGN_IDENTITY = "Developer ID Application";
|
||||
DEVELOPMENT_TEAM = 9BMAKYA76W;
|
||||
EXPORTED_SYMBOLS_FILE = Infinity2.exp;
|
||||
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
|
||||
GENERATE_PKGINFO_FILE = YES;
|
||||
INFOPLIST_FILE = Info.plist;
|
||||
INSTALL_PATH = "$(HOME)/Library/Audio/Plug-Ins/Components/";
|
||||
LIBRARY_STYLE = Bundle;
|
||||
MACOSX_DEPLOYMENT_TARGET = 11.1;
|
||||
OTHER_LDFLAGS = "-bundle";
|
||||
OTHER_REZFLAGS = "";
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "com.airwindows.audiounit.${PRODUCT_NAME:identifier}";
|
||||
PRODUCT_NAME = Infinity2;
|
||||
SDKROOT = macosx;
|
||||
STRIP_INSTALLED_PRODUCT = YES;
|
||||
STRIP_STYLE = debugging;
|
||||
WRAPPER_EXTENSION = component;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
3E4BA248089833B7007656EC /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD)";
|
||||
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_TESTABILITY = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = "/Users/christopherjohnson/Desktop/CA_SDK/**";
|
||||
MACOSX_DEPLOYMENT_TARGET = 11.1;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = macosx;
|
||||
WARNING_CFLAGS = (
|
||||
"-Wmost",
|
||||
"-Wno-four-char-constants",
|
||||
"-Wno-unknown-pragmas",
|
||||
);
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
3E4BA249089833B7007656EC /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ARCHS = "$(ARCHS_STANDARD)";
|
||||
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = "/Users/christopherjohnson/Desktop/CA_SDK/**";
|
||||
MACOSX_DEPLOYMENT_TARGET = 11.1;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = macosx;
|
||||
WARNING_CFLAGS = (
|
||||
"-Wmost",
|
||||
"-Wno-four-char-constants",
|
||||
"-Wno-unknown-pragmas",
|
||||
);
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
3E4BA243089833B7007656EC /* Build configuration list for PBXNativeTarget "Infinity2" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
3E4BA244089833B7007656EC /* Debug */,
|
||||
3E4BA245089833B7007656EC /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Debug;
|
||||
};
|
||||
3E4BA247089833B7007656EC /* Build configuration list for PBXProject "Infinity2" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
3E4BA248089833B7007656EC /* Debug */,
|
||||
3E4BA249089833B7007656EC /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Debug;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 089C1669FE841209C02AAC07 /* Project object */;
|
||||
}
|
||||
7
plugins/MacSignedAU/Infinity2/Infinity2.xcodeproj/project.xcworkspace/contents.xcworkspacedata
generated
Normal file
7
plugins/MacSignedAU/Infinity2/Infinity2.xcodeproj/project.xcworkspace/contents.xcworkspacedata
generated
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "self:">
|
||||
</FileRef>
|
||||
</Workspace>
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>IDEDidComputeMac32BitWarning</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
Binary file not shown.
|
|
@ -0,0 +1,67 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1240"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
buildImplicitDependencies = "YES">
|
||||
<BuildActionEntries>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
buildForProfiling = "YES"
|
||||
buildForArchiving = "YES"
|
||||
buildForAnalyzing = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "8D01CCC60486CAD60068D4B7"
|
||||
BuildableName = "Infinity2.component"
|
||||
BlueprintName = "Infinity2"
|
||||
ReferencedContainer = "container:Infinity2.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
</BuildActionEntries>
|
||||
</BuildAction>
|
||||
<TestAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||
<Testables>
|
||||
</Testables>
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
buildConfiguration = "Release"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
launchStyle = "0"
|
||||
useCustomWorkingDirectory = "NO"
|
||||
ignoresPersistentStateOnLaunch = "NO"
|
||||
debugDocumentVersioning = "YES"
|
||||
debugServiceExtension = "internal"
|
||||
allowLocationSimulation = "YES">
|
||||
</LaunchAction>
|
||||
<ProfileAction
|
||||
buildConfiguration = "Release"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
savedToolIdentifier = ""
|
||||
useCustomWorkingDirectory = "NO"
|
||||
debugDocumentVersioning = "YES">
|
||||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "8D01CCC60486CAD60068D4B7"
|
||||
BuildableName = "Infinity2.component"
|
||||
BlueprintName = "Infinity2"
|
||||
ReferencedContainer = "container:Infinity2.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
</ProfileAction>
|
||||
<AnalyzeAction
|
||||
buildConfiguration = "Debug">
|
||||
</AnalyzeAction>
|
||||
<ArchiveAction
|
||||
buildConfiguration = "Release"
|
||||
revealArchiveInOrganizer = "YES">
|
||||
</ArchiveAction>
|
||||
</Scheme>
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>SchemeUserState</key>
|
||||
<dict>
|
||||
<key>Infinity2.xcscheme_^#shared#^_</key>
|
||||
<dict>
|
||||
<key>orderHint</key>
|
||||
<integer>0</integer>
|
||||
</dict>
|
||||
</dict>
|
||||
<key>SuppressBuildableAutocreation</key>
|
||||
<dict>
|
||||
<key>8D01CCC60486CAD60068D4B7</key>
|
||||
<dict>
|
||||
<key>primary</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</dict>
|
||||
</dict>
|
||||
</plist>
|
||||
58
plugins/MacSignedAU/Infinity2/Infinity2Version.h
Normal file
58
plugins/MacSignedAU/Infinity2/Infinity2Version.h
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
/*
|
||||
* File: Infinity2Version.h
|
||||
*
|
||||
* Version: 1.0
|
||||
*
|
||||
* Created: 4/26/21
|
||||
*
|
||||
* Copyright: Copyright © 2021 Airwindows, All Rights Reserved
|
||||
*
|
||||
* Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc. ("Apple") in
|
||||
* consideration of your agreement to the following terms, and your use, installation, modification
|
||||
* or redistribution of this Apple software constitutes acceptance of these terms. If you do
|
||||
* not agree with these terms, please do not use, install, modify or redistribute this Apple
|
||||
* software.
|
||||
*
|
||||
* In consideration of your agreement to abide by the following terms, and subject to these terms,
|
||||
* Apple grants you a personal, non-exclusive license, under Apple's copyrights in this
|
||||
* original Apple software (the "Apple Software"), to use, reproduce, modify and redistribute the
|
||||
* Apple Software, with or without modifications, in source and/or binary forms; provided that if you
|
||||
* redistribute the Apple Software in its entirety and without modifications, you must retain this
|
||||
* notice and the following text and disclaimers in all such redistributions of the Apple Software.
|
||||
* Neither the name, trademarks, service marks or logos of Apple Computer, Inc. may be used to
|
||||
* endorse or promote products derived from the Apple Software without specific prior written
|
||||
* permission from Apple. Except as expressly stated in this notice, no other rights or
|
||||
* licenses, express or implied, are granted by Apple herein, including but not limited to any
|
||||
* patent rights that may be infringed by your derivative works or by other works in which the
|
||||
* Apple Software may be incorporated.
|
||||
*
|
||||
* The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR
|
||||
* IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY
|
||||
* AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE
|
||||
* OR IN COMBINATION WITH YOUR PRODUCTS.
|
||||
*
|
||||
* IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE,
|
||||
* REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER
|
||||
* UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN
|
||||
* IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
*/
|
||||
#ifndef __Infinity2Version_h__
|
||||
#define __Infinity2Version_h__
|
||||
|
||||
|
||||
#ifdef DEBUG
|
||||
#define kInfinity2Version 0xFFFFFFFF
|
||||
#else
|
||||
#define kInfinity2Version 0x00010000
|
||||
#endif
|
||||
|
||||
//~~~~~~~~~~~~~~ Change!!! ~~~~~~~~~~~~~~~~~~~~~//
|
||||
#define Infinity2_COMP_MANF 'Dthr'
|
||||
#define Infinity2_COMP_SUBTYPE 'infj'
|
||||
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//
|
||||
|
||||
#endif
|
||||
|
||||
47
plugins/MacSignedAU/Infinity2/Info.plist
Normal file
47
plugins/MacSignedAU/Infinity2/Info.plist
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>AudioComponents</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>description</key>
|
||||
<string>${PRODUCT_NAME:identifier} AU</string>
|
||||
<key>factoryFunction</key>
|
||||
<string>${PRODUCT_NAME:identifier}Factory</string>
|
||||
<key>manufacturer</key>
|
||||
<string>Dthr</string>
|
||||
<key>name</key>
|
||||
<string>Airwindows: ${PRODUCT_NAME:identifier}</string>
|
||||
<key>subtype</key>
|
||||
<string>infj</string>
|
||||
<key>type</key>
|
||||
<string>aufx</string>
|
||||
<key>version</key>
|
||||
<integer>65536</integer>
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string></string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>${PROJECTNAMEASIDENTIFIER}</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>DthX</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0</string>
|
||||
<key>CSResourcesFileMapped</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
BIN
plugins/MacSignedAU/Infinity2/en.lproj/InfoPlist.strings
Normal file
BIN
plugins/MacSignedAU/Infinity2/en.lproj/InfoPlist.strings
Normal file
Binary file not shown.
16
plugins/MacSignedAU/Infinity2/version.plist
Normal file
16
plugins/MacSignedAU/Infinity2/version.plist
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>BuildVersion</key>
|
||||
<string>3</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0</string>
|
||||
<key>ProjectName</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>SourceVersion</key>
|
||||
<string>590000</string>
|
||||
</dict>
|
||||
</plist>
|
||||
Loading…
Add table
Add a link
Reference in a new issue