-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
148 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
//----------------------------------------------------------------------------- | ||
// LICENSE | ||
// (c) 2018, Steinberg Media Technologies GmbH, All Rights Reserved | ||
//----------------------------------------------------------------------------- | ||
// Redistribution and use in source and binary forms, with or without modification, | ||
// are permitted provided that the following conditions are met: | ||
// | ||
// * Redistributions of source code must retain the above copyright notice, | ||
// this list of conditions and the following disclaimer. | ||
// * Redistributions in binary form must reproduce the above copyright notice, | ||
// this list of conditions and the following disclaimer in the documentation | ||
// and/or other materials provided with the distribution. | ||
// * Neither the name of the Steinberg Media Technologies nor the names of its | ||
// contributors may be used to endorse or promote products derived from this | ||
// software without specific prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
// IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, | ||
// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE | ||
// OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
// OF THE POSSIBILITY OF SUCH DAMAGE. | ||
//----------------------------------------------------------------------------- | ||
|
||
#include "audiounitconfig.h" | ||
|
||
<?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>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleExecutable</key> | ||
<string>$(EXECUTABLE_NAME)</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>kAudioUnitBundleIdentifier</string> | ||
<key>CFBundleName</key> | ||
<string>$(PRODUCT_NAME)</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundlePackageType</key> | ||
<string>BNDL</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleVersion</key> | ||
<string>1.0</string> | ||
<key>CSResourcesFileMapped</key> | ||
<string>yes</string> | ||
|
||
/* | ||
The "AudioUnit SupportedNumChannels" key is only necessary if you build an effect not an instrument. | ||
You should describe all supported channel configurations. | ||
This example says that it supports Stereo/Stereo or Mono/Mono. | ||
*/ | ||
|
||
<key>AudioUnit SupportedNumChannels</key> | ||
<array> | ||
<dict> | ||
<key>Outputs</key> | ||
<string>2</string> | ||
<key>Inputs</key> | ||
<string>2</string> | ||
</dict> | ||
<dict> | ||
<key>Outputs</key> | ||
<string>0</string> | ||
<key>Inputs</key> | ||
<string>1</string> | ||
</dict> | ||
<dict> | ||
<key>Outputs</key> | ||
<string>1</string> | ||
<key>Inputs</key> | ||
<string>1</string> | ||
</dict> | ||
</array> | ||
|
||
<key>AudioUnit Version</key> | ||
<string>kAudioUnitVersion</string> | ||
|
||
/* | ||
Support for the new AUPlugIn model in Mac OS X 10.7 | ||
*/ | ||
<key>AudioComponents</key> | ||
<array> | ||
<dict> | ||
<key>description</key> | ||
<string>kAUPluginDescription</string> | ||
<key>factoryFunction</key> | ||
<string>AUWrapperFactory</string> | ||
<key>manufacturer</key> | ||
<string>kAUPluginManufacturer</string> | ||
<key>name</key> | ||
<string>kAUPluginName</string> | ||
<key>subtype</key> | ||
<string>kAUPluginSubType</string> | ||
<key>type</key> | ||
<string>kAUPluginType</string> | ||
<key>version</key> | ||
<integer>kAudioUnitVersion</integer> | ||
</dict> | ||
</array> | ||
|
||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#include "version.h" | ||
|
||
// Check https://developer.apple.com/library/archive/documentation/General/Conceptual/ExtensibilityPG/AudioUnit.html for various types | ||
|
||
/* Bundle Identifier */ | ||
#define kAudioUnitBundleIdentifier org.pongasoft.vst.ABSwitch.audiounit | ||
|
||
/* Version Number (computed in version.h from version in CMakeLists.txt) */ | ||
#define kAudioUnitVersion AU_VERSION_INT | ||
|
||
/* Company Name + Effect Name */ | ||
#define kAUPluginName pongasoft: A/B Switch | ||
|
||
/* A product name for the audio unit, such as TremoloUnit */ | ||
#define kAUPluginDescription A/B Switch | ||
|
||
/* | ||
The specific variant of the Audio Unit. The four possible types and their values are: | ||
Effect (aufx), Generator (augn), Instrument (aumu), and Music Effect (aufm). | ||
*/ | ||
#define kAUPluginType aufx | ||
|
||
/* A subtype code for the audio unit, such as tmlo. This value must be exactly 4 alphanumeric characters. */ | ||
#define kAUPluginSubType util | ||
|
||
/* A manufacturer code for the audio unit, such as Aaud. This value must be exactly 4 alphanumeric characters. | ||
* Manufacturer OSType should have at least one non-lower case character */ | ||
#define kAUPluginManufacturer ABSw | ||
|
||
// Definitions for the resource file | ||
#define kAudioUnitName "pongasoft: A/B Switch" // same as kAUPluginName | ||
#define kAudioUnitDescription "A/B Switch" // same as kAUPluginDescription | ||
#define kAudioUnitType 'aufx' // same as kAUPluginType | ||
#define kAudioUnitComponentSubType 'util' // same as kAUPluginSubType | ||
#define kAudioUnitComponentManuf 'Psft' // same as kAUPluginManufacturer | ||
|
||
#define kAudioUnitCarbonView 1 // if 0 no Carbon view support will be added |
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+26 KB
design/Background_2x.pxd/data/03B614DE-B6B5-4A2D-9A46-BA9598778C06-5442-00001DD09EA1EE1F
Binary file not shown.
Binary file added
BIN
+4.1 KB
design/Background_2x.pxd/data/063011BF-C9BF-49AF-8485-9CD035A504AB-5442-00001DB0DC63CEED
Binary file not shown.
Binary file added
BIN
+28.3 KB
design/Background_2x.pxd/data/2C29ECE2-D046-4E39-86B6-32AB7CF093CC-4008-0000082292A4D9FB
Binary file not shown.
Binary file added
BIN
+27.1 KB
design/Background_2x.pxd/data/3639E649-DED3-475B-8B56-C7D4CFD964D5-2466-0000104284852C98
Binary file not shown.
Binary file added
BIN
+27.1 KB
design/Background_2x.pxd/data/4C0A1B74-9007-4529-BE27-1548E86E740D-2466-0000103F97A37B33
Binary file not shown.
Binary file added
BIN
+5.4 KB
design/Background_2x.pxd/data/5DF8A935-CE69-43DA-9AB6-C678245C0738-1608-00000A7FE82956C0
Binary file not shown.
Binary file added
BIN
+5.4 KB
design/Background_2x.pxd/data/653D25B8-4898-49EF-AA4C-83FAD196A08B-1608-00000A729C070554
Binary file not shown.
Binary file added
BIN
+5.32 KB
design/Background_2x.pxd/data/72E82E88-5C22-4BA3-A706-637B1826F8C9-1608-00000DAA6FCD52F9
Binary file not shown.
Binary file added
BIN
+37.3 KB
design/Background_2x.pxd/data/74164989-A96D-4428-81AD-AB5F24F6A316-1608-00000EEA625F3932
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+252 KB
design/Background_2x.pxd/data/AAA0B657-8ABB-44FA-80EC-A36B807BCD36-2466-00001352FB68CFAE
Binary file not shown.
Binary file added
BIN
+16.8 KB
design/Background_2x.pxd/data/BB23B96A-C909-4FFC-BBCB-B2222D23E3C8-1608-000012D77CEE7557
Binary file not shown.
Binary file added
BIN
+26 KB
design/Background_2x.pxd/data/E6301B67-D11D-4919-BEC5-AF5CAE74697B-5442-00001C23CFA911AE
Binary file not shown.
Binary file added
BIN
+7.61 KB
design/Background_2x.pxd/data/F0BA3E93-DFC2-4174-88FD-6963F016337E-3988-000017A02EB47652
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.