f@0: #define PLUG_MFR "QueenMaryUniversityOfLondon" f@0: #define PLUG_NAME "AccessibleSpectrumAnalyser" f@0: f@0: #define PLUG_CLASS_NAME AccessibleSpectrumAnalyser f@0: f@0: #define BUNDLE_MFR "QueenMaryUniversityOfLondon" f@0: #define BUNDLE_NAME "AccessibleSpectrumAnalyser" f@0: f@0: #define PLUG_ENTRY AccessibleSpectrumAnalyser_Entry f@0: #define PLUG_VIEW_ENTRY AccessibleSpectrumAnalyser_ViewEntry f@0: f@0: #define PLUG_ENTRY_STR "AccessibleSpectrumAnalyser_Entry" f@0: #define PLUG_VIEW_ENTRY_STR "AccessibleSpectrumAnalyser_ViewEntry" f@0: f@0: #define VIEW_CLASS AccessibleSpectrumAnalyser_View f@0: #define VIEW_CLASS_STR "AccessibleSpectrumAnalyser_View" f@0: f@0: // Format 0xMAJR.MN.BG - in HEX! so version 10.1.5 would be 0x000A0105 f@0: #define PLUG_VER 0x00010000 f@0: #define VST3_VER_STR "1.0.0" f@0: f@0: // http://service.steinberg.de/databases/plugin.nsf/plugIn?openForm f@0: // 4 chars, single quotes. At least one capital letter f@0: #define PLUG_UNIQUE_ID 'mcqk' f@0: // make sure this is not the same as BUNDLE_MFR f@0: #define PLUG_MFR_ID 'Qmul' f@0: f@0: // ProTools stuff f@0: #if (defined(AAX_API) || defined(RTAS_API)) && !defined(_PIDS_) f@0: #define _PIDS_ f@0: const int PLUG_TYPE_IDS[2] = {'TXN1', 'TXN2'}; f@0: #endif f@0: #define PLUG_MFR_PT "QueenMaryUniversityOfLondon\nQueenMaryUniversityOfLondon\nAcme" f@0: #define PLUG_NAME_PT "AccessibleSpectrumAnalyser\nIPTX" f@0: #define PLUG_TYPE_PT "Effect" f@0: #define PLUG_DOES_AUDIOSUITE 0 f@0: f@0: /* PLUG_TYPE_PT can be "None", "EQ", "Dynamics", "PitchShift", "Reverb", "Delay", "Modulation", f@0: "Harmonic" "NoiseReduction" "Dither" "SoundField" "Effect" f@0: instrument determined by PLUG _IS _INST f@0: */ f@0: f@0: #define PLUG_CHANNEL_IO "1-1 2-2" f@0: f@0: #define PLUG_LATENCY 0 f@0: #define PLUG_IS_INST 0 f@0: f@0: // if this is 0 RTAS can't get tempo info f@0: #define PLUG_DOES_MIDI 0 f@0: f@0: #define PLUG_DOES_STATE_CHUNKS 0 f@0: f@0: // Unique IDs for each image resource. f@0: #define KNOB_ID 101 f@0: f@0: // Image resource locations for this plug. f@0: #define KNOB_FN "resources/img/knob.png" f@0: f@0: f@0: // GUI default dimensions f@0: #define GUI_WIDTH 700 f@0: #define GUI_HEIGHT 400 f@0: f@0: // on MSVC, you must define SA_API in the resource editor preprocessor macros as well as the c++ ones f@0: #if defined(SA_API) && !defined(OS_IOS) f@0: #include "app_wrapper/app_resource.h" f@0: #endif f@0: f@0: // vst3 stuff f@0: #define MFR_URL "http://depic.eecs.qmul.ac.uk/apm" f@0: #define MFR_EMAIL "depic@eecs.qmul.ac.uk" f@0: #define EFFECT_TYPE_VST3 "Fx" f@0: f@0: /* "Fx|Analyzer"", "Fx|Delay", "Fx|Distortion", "Fx|Dynamics", "Fx|EQ", "Fx|Filter", f@0: "Fx", "Fx|Instrument", "Fx|InstrumentExternal", "Fx|Spatial", "Fx|Generator", f@0: "Fx|Mastering", "Fx|Modulation", "Fx|PitchShift", "Fx|Restoration", "Fx|Reverb", f@0: "Fx|Surround", "Fx|Tools", "Instrument", "Instrument|Drum", "Instrument|Sampler", f@0: "Instrument|Synth", "Instrument|Synth|Sampler", "Instrument|External", "Spatial", f@0: "Spatial|Fx", "OnlyRT", "OnlyOfflineProcess", "Mono", "Stereo", f@0: "Surround" f@0: */