|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449 |
- /*
- * Carla Native Plugins
- * Copyright (C) 2012-2018 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the doc/GPL.txt file.
- */
-
- #include "CarlaNative.h"
- #include "CarlaMIDI.h"
- #include "CarlaUtils.hpp"
-
- #undef DESCFUNCS
- #define DESCFUNCS \
- nullptr, nullptr, nullptr, nullptr, nullptr, \
- nullptr, nullptr, nullptr, nullptr, nullptr, \
- nullptr, nullptr, nullptr, nullptr, nullptr, \
- nullptr, nullptr, nullptr, nullptr, nullptr, nullptr
-
- static const NativePluginDescriptor sNativePluginDescriptors[] = {
-
- // --------------------------------------------------------------------------------------------------------------------
- // Simple plugins
-
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_NONE,
- /* hints */ NATIVE_PLUGIN_IS_RTSAFE,
- /* supports */ NATIVE_PLUGIN_SUPPORTS_NOTHING,
- /* audioIns */ 1,
- /* audioOuts */ 1,
- /* midiIns */ 0,
- /* midiOuts */ 0,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "Bypass",
- /* label */ "bypass",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ NATIVE_PLUGIN_IS_RTSAFE,
- /* supports */ NATIVE_PLUGIN_SUPPORTS_NOTHING,
- /* audioIns */ 0,
- /* audioOuts */ 0,
- /* midiIns */ 0,
- /* midiOuts */ 0,
- /* paramIns */ 5-1,
- /* paramOuts */ 1,
- /* name */ "LFO",
- /* label */ "lfo",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ NATIVE_PLUGIN_IS_RTSAFE,
- /* supports */ NATIVE_PLUGIN_SUPPORTS_EVERYTHING,
- /* audioIns */ 0,
- /* audioOuts */ 0,
- /* midiIns */ 1,
- /* midiOuts */ 1,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "MIDI Channel Filter",
- /* label */ "midichanfilter",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ NATIVE_PLUGIN_IS_RTSAFE,
- /* supports */ NATIVE_PLUGIN_SUPPORTS_EVERYTHING,
- /* audioIns */ 0,
- /* audioOuts */ 0,
- /* midiIns */ 1,
- /* midiOuts */ 2,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "MIDI Channel A/B",
- /* label */ "midichanab",
- /* maker */ "Milk Brewster",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ NATIVE_PLUGIN_IS_RTSAFE,
- /* supports */ NATIVE_PLUGIN_SUPPORTS_EVERYTHING,
- /* audioIns */ 0,
- /* audioOuts */ 0,
- /* midiIns */ 1,
- /* midiOuts */ 1,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "MIDI Gain",
- /* label */ "midigain",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ NATIVE_PLUGIN_IS_RTSAFE,
- /* supports */ NATIVE_PLUGIN_SUPPORTS_EVERYTHING,
- /* audioIns */ 0,
- /* audioOuts */ 0,
- /* midiIns */ MAX_MIDI_CHANNELS,
- /* midiOuts */ 1,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "MIDI Join",
- /* label */ "midijoin",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ NATIVE_PLUGIN_IS_RTSAFE,
- /* supports */ NATIVE_PLUGIN_SUPPORTS_EVERYTHING,
- /* audioIns */ 0,
- /* audioOuts */ 0,
- /* midiIns */ 1,
- /* midiOuts */ MAX_MIDI_CHANNELS,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "MIDI Split",
- /* label */ "midisplit",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ NATIVE_PLUGIN_IS_RTSAFE,
- /* supports */ NATIVE_PLUGIN_SUPPORTS_EVERYTHING,
- /* audioIns */ 0,
- /* audioOuts */ 0,
- /* midiIns */ 1,
- /* midiOuts */ 1,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "MIDI Through",
- /* label */ "midithrough",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ NATIVE_PLUGIN_IS_RTSAFE,
- /* supports */ NATIVE_PLUGIN_SUPPORTS_EVERYTHING,
- /* audioIns */ 0,
- /* audioOuts */ 0,
- /* midiIns */ 1,
- /* midiOuts */ 1,
- /* paramIns */ 2,
- /* paramOuts */ 0,
- /* name */ "MIDI Transpose",
- /* label */ "miditranspose",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ NATIVE_PLUGIN_IS_RTSAFE,
- /* supports */ NATIVE_PLUGIN_SUPPORTS_EVERYTHING,
- /* audioIns */ 0,
- /* audioOuts */ 0,
- /* midiIns */ 1,
- /* midiOuts */ 1,
- /* paramIns */ 1,
- /* paramOuts */ 0,
- /* name */ "MIDI Channelize",
- /* label */ "midichannelize",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
-
- // --------------------------------------------------------------------------------------------------------------------
- // Audio file
-
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_RTSAFE
- |NATIVE_PLUGIN_HAS_UI
- |NATIVE_PLUGIN_NEEDS_UI_OPEN_SAVE
- |NATIVE_PLUGIN_USES_TIME),
- /* supports */ NATIVE_PLUGIN_SUPPORTS_NOTHING,
- /* audioIns */ 0,
- /* audioOuts */ 2,
- /* midiIns */ 0,
- /* midiOuts */ 0,
- /* paramIns */ 1,
- /* paramOuts */ 0,
- /* name */ "Audio File",
- /* label */ "audiofile",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
-
- // --------------------------------------------------------------------------------------------------------------------
- // MIDI file and sequencer
-
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_RTSAFE
- |NATIVE_PLUGIN_HAS_UI
- |NATIVE_PLUGIN_NEEDS_UI_OPEN_SAVE
- |NATIVE_PLUGIN_USES_STATE
- |NATIVE_PLUGIN_USES_TIME),
- /* supports */ NATIVE_PLUGIN_SUPPORTS_NOTHING,
- /* audioIns */ 0,
- /* audioOuts */ 0,
- /* midiIns */ 0,
- /* midiOuts */ 1,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "MIDI File",
- /* label */ "midifile",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- #ifdef HAVE_PYQT
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_RTSAFE
- |NATIVE_PLUGIN_HAS_UI
- |NATIVE_PLUGIN_USES_STATE
- |NATIVE_PLUGIN_USES_TIME),
- /* supports */ NATIVE_PLUGIN_SUPPORTS_NOTHING,
- /* audioIns */ 0,
- /* audioOuts */ 0,
- /* midiIns */ 0,
- /* midiOuts */ 1,
- /* paramIns */ 4,
- /* paramOuts */ 0,
- /* name */ "MIDI Pattern",
- /* label */ "midipattern",
- /* maker */ "falkTX, tatch",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- #endif
-
- // --------------------------------------------------------------------------------------------------------------------
- // Carla
-
- #ifdef HAVE_PYQT
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_OTHER,
- /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_SYNTH
- |NATIVE_PLUGIN_HAS_UI
- |NATIVE_PLUGIN_NEEDS_UI_MAIN_THREAD
- |NATIVE_PLUGIN_USES_STATE
- |NATIVE_PLUGIN_USES_TIME),
- /* supports */ static_cast<NativePluginSupports>(NATIVE_PLUGIN_SUPPORTS_EVERYTHING),
- /* audioIns */ 2,
- /* audioOuts */ 2,
- /* midiIns */ 1,
- /* midiOuts */ 1,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "Carla-Rack",
- /* label */ "carlarack",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_OTHER,
- /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_SYNTH
- |NATIVE_PLUGIN_HAS_UI
- |NATIVE_PLUGIN_NEEDS_UI_MAIN_THREAD
- |NATIVE_PLUGIN_USES_STATE
- |NATIVE_PLUGIN_USES_TIME),
- /* supports */ static_cast<NativePluginSupports>(NATIVE_PLUGIN_SUPPORTS_EVERYTHING),
- /* audioIns */ 2,
- /* audioOuts */ 2,
- /* midiIns */ 1,
- /* midiOuts */ 0,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "Carla-Rack (no midi out)",
- /* label */ "carlarack-nomidiout",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_OTHER,
- /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_SYNTH
- |NATIVE_PLUGIN_HAS_UI
- |NATIVE_PLUGIN_NEEDS_UI_MAIN_THREAD
- |NATIVE_PLUGIN_USES_STATE
- |NATIVE_PLUGIN_USES_TIME),
- /* supports */ static_cast<NativePluginSupports>(NATIVE_PLUGIN_SUPPORTS_EVERYTHING),
- /* audioIns */ 2,
- /* audioOuts */ 2,
- /* midiIns */ 1,
- /* midiOuts */ 1,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "Carla-Patchbay",
- /* label */ "carlapatchbay",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_OTHER,
- /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_SYNTH
- |NATIVE_PLUGIN_HAS_UI
- |NATIVE_PLUGIN_NEEDS_UI_MAIN_THREAD
- |NATIVE_PLUGIN_USES_STATE
- |NATIVE_PLUGIN_USES_TIME),
- /* supports */ static_cast<NativePluginSupports>(NATIVE_PLUGIN_SUPPORTS_EVERYTHING),
- /* audioIns */ 3,
- /* audioOuts */ 2,
- /* midiIns */ 1,
- /* midiOuts */ 1,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "Carla-Patchbay (sidechain)",
- /* label */ "carlapatchbay3s",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_OTHER,
- /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_SYNTH
- |NATIVE_PLUGIN_HAS_UI
- |NATIVE_PLUGIN_NEEDS_UI_MAIN_THREAD
- |NATIVE_PLUGIN_USES_STATE
- |NATIVE_PLUGIN_USES_TIME),
- /* supports */ static_cast<NativePluginSupports>(NATIVE_PLUGIN_SUPPORTS_EVERYTHING),
- /* audioIns */ 16,
- /* audioOuts */ 16,
- /* midiIns */ 1,
- /* midiOuts */ 1,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "Carla-Patchbay (16chan)",
- /* label */ "carlapatchbay16",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_OTHER,
- /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_SYNTH
- |NATIVE_PLUGIN_HAS_UI
- |NATIVE_PLUGIN_NEEDS_UI_MAIN_THREAD
- |NATIVE_PLUGIN_USES_STATE
- |NATIVE_PLUGIN_USES_TIME),
- /* supports */ static_cast<NativePluginSupports>(NATIVE_PLUGIN_SUPPORTS_EVERYTHING),
- /* audioIns */ 32,
- /* audioOuts */ 32,
- /* midiIns */ 1,
- /* midiOuts */ 1,
- /* paramIns */ 0,
- /* paramOuts */ 0,
- /* name */ "Carla-Patchbay (32chan)",
- /* label */ "carlapatchbay32",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- #endif
-
- // --------------------------------------------------------------------------------------------------------------------
- // External-UI plugins
-
- #ifdef HAVE_PYQT
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_RTSAFE
- |NATIVE_PLUGIN_HAS_UI
- |NATIVE_PLUGIN_NEEDS_FIXED_BUFFERS),
- /* supports */ NATIVE_PLUGIN_SUPPORTS_NOTHING,
- /* audioIns */ 2,
- /* audioOuts */ 0,
- /* midiIns */ 0,
- /* midiOuts */ 0,
- /* paramIns */ 2,
- /* paramOuts */ 2,
- /* name */ "Big Meter",
- /* label */ "bigmeter",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- {
- /* category */ NATIVE_PLUGIN_CATEGORY_UTILITY,
- /* hints */ static_cast<NativePluginHints>(NATIVE_PLUGIN_IS_RTSAFE
- |NATIVE_PLUGIN_HAS_UI),
- /* supports */ NATIVE_PLUGIN_SUPPORTS_NOTHING,
- /* audioIns */ 0,
- /* audioOuts */ 0,
- /* midiIns */ 0,
- /* midiOuts */ 0,
- /* paramIns */ 1,
- /* paramOuts */ 0,
- /* name */ "Notes",
- /* label */ "notes",
- /* maker */ "falkTX",
- /* copyright */ "GNU GPL v2+",
- DESCFUNCS
- },
- #endif
-
- #ifdef HAVE_EXTERNAL_PLUGINS
- # define CARLA_EXTERNAL_PLUGINS_INCLUDED_DIRECTLY
- # include "external/_data.cpp"
- #endif
-
- };
-
- #undef DESCFUNCS
-
- // --------------------------------------------------------------------------------------------------------------------
-
- const NativePluginDescriptor* carla_get_native_plugins_data(uint32_t* count)
- {
- CARLA_SAFE_ASSERT_RETURN(count != nullptr, nullptr);
-
- *count = static_cast<uint32_t>(sizeof(sNativePluginDescriptors)/sizeof(NativePluginDescriptor));
- return sNativePluginDescriptors;
- }
-
- // --------------------------------------------------------------------------------------------------------------------
|