├── .DS_Store ├── Core ├── Common.cpp ├── Common.h ├── GmpiApiAudio.h ├── GmpiApiCommon.h ├── GmpiApiEditor.h ├── GmpiMidi.h ├── GmpiSdkCommon.h ├── Processor.cpp ├── Processor.h └── RefCountMacros.h ├── Docs ├── FAQ.md ├── GMPI_Specs.md ├── images │ ├── GMPI_Icon.png │ ├── GMPI_Icon_full.png │ ├── SilenceDetection.gif │ ├── audio_unit_logo.png │ ├── clap_logo.png │ └── vst3_logo.png └── plugin_api_complexity.png ├── Extensions ├── EmbeddedFile.h ├── EmbeddedFileHelper.h └── PinCount.h ├── Hosting ├── controller_holder.cpp ├── controller_holder.h ├── dynamic_linking.cpp ├── dynamic_linking.h ├── gmpi_factory.cpp ├── gmpi_factory.h ├── message_queues.cpp ├── message_queues.h ├── parse_enum.h ├── processor_holder.cpp ├── processor_holder.h ├── xml_spec_reader.cpp └── xml_spec_reader.h ├── Projections └── plain_c │ └── Core │ ├── gmpi.h │ └── gmpi_audio.h ├── README.md └── gmpi_plugin.cmake /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/.DS_Store -------------------------------------------------------------------------------- /Core/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Core/Common.cpp -------------------------------------------------------------------------------- /Core/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Core/Common.h -------------------------------------------------------------------------------- /Core/GmpiApiAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Core/GmpiApiAudio.h -------------------------------------------------------------------------------- /Core/GmpiApiCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Core/GmpiApiCommon.h -------------------------------------------------------------------------------- /Core/GmpiApiEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Core/GmpiApiEditor.h -------------------------------------------------------------------------------- /Core/GmpiMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Core/GmpiMidi.h -------------------------------------------------------------------------------- /Core/GmpiSdkCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Core/GmpiSdkCommon.h -------------------------------------------------------------------------------- /Core/Processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Core/Processor.cpp -------------------------------------------------------------------------------- /Core/Processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Core/Processor.h -------------------------------------------------------------------------------- /Core/RefCountMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Core/RefCountMacros.h -------------------------------------------------------------------------------- /Docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Docs/FAQ.md -------------------------------------------------------------------------------- /Docs/GMPI_Specs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Docs/GMPI_Specs.md -------------------------------------------------------------------------------- /Docs/images/GMPI_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Docs/images/GMPI_Icon.png -------------------------------------------------------------------------------- /Docs/images/GMPI_Icon_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Docs/images/GMPI_Icon_full.png -------------------------------------------------------------------------------- /Docs/images/SilenceDetection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Docs/images/SilenceDetection.gif -------------------------------------------------------------------------------- /Docs/images/audio_unit_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Docs/images/audio_unit_logo.png -------------------------------------------------------------------------------- /Docs/images/clap_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Docs/images/clap_logo.png -------------------------------------------------------------------------------- /Docs/images/vst3_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Docs/images/vst3_logo.png -------------------------------------------------------------------------------- /Docs/plugin_api_complexity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Docs/plugin_api_complexity.png -------------------------------------------------------------------------------- /Extensions/EmbeddedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Extensions/EmbeddedFile.h -------------------------------------------------------------------------------- /Extensions/EmbeddedFileHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Extensions/EmbeddedFileHelper.h -------------------------------------------------------------------------------- /Extensions/PinCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Extensions/PinCount.h -------------------------------------------------------------------------------- /Hosting/controller_holder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/controller_holder.cpp -------------------------------------------------------------------------------- /Hosting/controller_holder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/controller_holder.h -------------------------------------------------------------------------------- /Hosting/dynamic_linking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/dynamic_linking.cpp -------------------------------------------------------------------------------- /Hosting/dynamic_linking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/dynamic_linking.h -------------------------------------------------------------------------------- /Hosting/gmpi_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/gmpi_factory.cpp -------------------------------------------------------------------------------- /Hosting/gmpi_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/gmpi_factory.h -------------------------------------------------------------------------------- /Hosting/message_queues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/message_queues.cpp -------------------------------------------------------------------------------- /Hosting/message_queues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/message_queues.h -------------------------------------------------------------------------------- /Hosting/parse_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/parse_enum.h -------------------------------------------------------------------------------- /Hosting/processor_holder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/processor_holder.cpp -------------------------------------------------------------------------------- /Hosting/processor_holder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/processor_holder.h -------------------------------------------------------------------------------- /Hosting/xml_spec_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/xml_spec_reader.cpp -------------------------------------------------------------------------------- /Hosting/xml_spec_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Hosting/xml_spec_reader.h -------------------------------------------------------------------------------- /Projections/plain_c/Core/gmpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Projections/plain_c/Core/gmpi.h -------------------------------------------------------------------------------- /Projections/plain_c/Core/gmpi_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/Projections/plain_c/Core/gmpi_audio.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/README.md -------------------------------------------------------------------------------- /gmpi_plugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffMcClintock/GMPI/HEAD/gmpi_plugin.cmake --------------------------------------------------------------------------------