├── .DS_Store ├── .gitignore ├── Builds ├── .DS_Store └── MacOSX │ ├── .DS_Store │ ├── Info-AU.plist │ ├── Info-Standalone_Plugin.plist │ ├── Info-VST3.plist │ ├── Neural Cab.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── thiagolobato.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── Neural Cab - AU.xcscheme │ │ │ ├── Neural Cab - All.xcscheme │ │ │ └── Neural Cab - VST3.xcscheme │ └── xcuserdata │ │ └── thiagolobato.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── NeuralCab.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── thiagolobato.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── NeuralCab - All.xcscheme │ │ │ ├── NeuralCab - Standalone Plugin.xcscheme │ │ │ └── NeuralCab - VST3.xcscheme │ └── xcuserdata │ │ └── thiagolobato.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── RecentFilesMenuTemplate.nib │ └── build │ ├── .DS_Store │ ├── Debug │ └── .DS_Store │ └── Release │ └── .DS_Store ├── JuceLibraryCode ├── JuceHeader.h ├── JucePluginDefines.h ├── ReadMe.txt ├── include_juce_audio_basics.cpp ├── include_juce_audio_basics.mm ├── include_juce_audio_devices.cpp ├── include_juce_audio_devices.mm ├── include_juce_audio_formats.cpp ├── include_juce_audio_formats.mm ├── include_juce_audio_plugin_client_AAX.cpp ├── include_juce_audio_plugin_client_AAX.mm ├── include_juce_audio_plugin_client_AU.r ├── include_juce_audio_plugin_client_AU_1.mm ├── include_juce_audio_plugin_client_AU_2.mm ├── include_juce_audio_plugin_client_AUv3.mm ├── include_juce_audio_plugin_client_RTAS.r ├── include_juce_audio_plugin_client_RTAS_1.cpp ├── include_juce_audio_plugin_client_RTAS_2.cpp ├── include_juce_audio_plugin_client_RTAS_3.cpp ├── include_juce_audio_plugin_client_RTAS_4.cpp ├── include_juce_audio_plugin_client_RTAS_utils.cpp ├── include_juce_audio_plugin_client_RTAS_utils.mm ├── include_juce_audio_plugin_client_Standalone.cpp ├── include_juce_audio_plugin_client_Unity.cpp ├── include_juce_audio_plugin_client_VST2.cpp ├── include_juce_audio_plugin_client_VST3.cpp ├── include_juce_audio_plugin_client_VST_utils.mm ├── include_juce_audio_plugin_client_utils.cpp ├── include_juce_audio_processors.cpp ├── include_juce_audio_processors.mm ├── include_juce_audio_utils.cpp ├── include_juce_audio_utils.mm ├── include_juce_core.cpp ├── include_juce_core.mm ├── include_juce_data_structures.cpp ├── include_juce_data_structures.mm ├── include_juce_dsp.cpp ├── include_juce_dsp.mm ├── include_juce_events.cpp ├── include_juce_events.mm ├── include_juce_graphics.cpp ├── include_juce_graphics.mm ├── include_juce_gui_basics.cpp ├── include_juce_gui_basics.mm ├── include_juce_gui_extra.cpp └── include_juce_gui_extra.mm ├── LICENSE ├── Neural Cab.jucer ├── README.md ├── Source ├── .DS_Store ├── GUI.h ├── NeuralCabinet.cpp ├── NeuralCabinet.h ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h ├── SpectrumComponent.cpp ├── SpectrumComponent.h └── WOLA.h └── dependencies ├── .DS_Store ├── VAECabinet.onnx └── onnxruntime-osx-arm64-1.11.1 ├── .DS_Store ├── GIT_COMMIT_ID ├── LICENSE ├── Privacy.md ├── README.md ├── ThirdPartyNotices.txt ├── VERSION_NUMBER ├── include ├── coreml_execution_provider.h ├── cpu_provider_factory.h ├── onnxruntime_c_api.h ├── onnxruntime_cxx_api.h ├── onnxruntime_cxx_inline.h ├── onnxruntime_run_options_config_keys.h ├── onnxruntime_session_options_config_keys.h └── provider_options.h └── lib ├── .DS_Store └── libonnxruntime.1.11.1.dylib.dSYM └── Contents └── Info.plist /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /Builds/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/.DS_Store -------------------------------------------------------------------------------- /Builds/MacOSX/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/.DS_Store -------------------------------------------------------------------------------- /Builds/MacOSX/Info-AU.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/Info-AU.plist -------------------------------------------------------------------------------- /Builds/MacOSX/Info-Standalone_Plugin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/Info-Standalone_Plugin.plist -------------------------------------------------------------------------------- /Builds/MacOSX/Info-VST3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/Info-VST3.plist -------------------------------------------------------------------------------- /Builds/MacOSX/Neural Cab.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/Neural Cab.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Builds/MacOSX/Neural Cab.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/Neural Cab.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Builds/MacOSX/Neural Cab.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/Neural Cab.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Builds/MacOSX/Neural Cab.xcodeproj/project.xcworkspace/xcuserdata/thiagolobato.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/Neural Cab.xcodeproj/project.xcworkspace/xcuserdata/thiagolobato.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Builds/MacOSX/Neural Cab.xcodeproj/xcshareddata/xcschemes/Neural Cab - AU.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/Neural Cab.xcodeproj/xcshareddata/xcschemes/Neural Cab - AU.xcscheme -------------------------------------------------------------------------------- /Builds/MacOSX/Neural Cab.xcodeproj/xcshareddata/xcschemes/Neural Cab - All.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/Neural Cab.xcodeproj/xcshareddata/xcschemes/Neural Cab - All.xcscheme -------------------------------------------------------------------------------- /Builds/MacOSX/Neural Cab.xcodeproj/xcshareddata/xcschemes/Neural Cab - VST3.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/Neural Cab.xcodeproj/xcshareddata/xcschemes/Neural Cab - VST3.xcscheme -------------------------------------------------------------------------------- /Builds/MacOSX/Neural Cab.xcodeproj/xcuserdata/thiagolobato.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/Neural Cab.xcodeproj/xcuserdata/thiagolobato.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Builds/MacOSX/Neural Cab.xcodeproj/xcuserdata/thiagolobato.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/Neural Cab.xcodeproj/xcuserdata/thiagolobato.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Builds/MacOSX/NeuralCab.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/NeuralCab.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Builds/MacOSX/NeuralCab.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/NeuralCab.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Builds/MacOSX/NeuralCab.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/NeuralCab.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Builds/MacOSX/NeuralCab.xcodeproj/project.xcworkspace/xcuserdata/thiagolobato.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/NeuralCab.xcodeproj/project.xcworkspace/xcuserdata/thiagolobato.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Builds/MacOSX/NeuralCab.xcodeproj/xcshareddata/xcschemes/NeuralCab - All.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/NeuralCab.xcodeproj/xcshareddata/xcschemes/NeuralCab - All.xcscheme -------------------------------------------------------------------------------- /Builds/MacOSX/NeuralCab.xcodeproj/xcshareddata/xcschemes/NeuralCab - Standalone Plugin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/NeuralCab.xcodeproj/xcshareddata/xcschemes/NeuralCab - Standalone Plugin.xcscheme -------------------------------------------------------------------------------- /Builds/MacOSX/NeuralCab.xcodeproj/xcshareddata/xcschemes/NeuralCab - VST3.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/NeuralCab.xcodeproj/xcshareddata/xcschemes/NeuralCab - VST3.xcscheme -------------------------------------------------------------------------------- /Builds/MacOSX/NeuralCab.xcodeproj/xcuserdata/thiagolobato.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/NeuralCab.xcodeproj/xcuserdata/thiagolobato.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Builds/MacOSX/NeuralCab.xcodeproj/xcuserdata/thiagolobato.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/NeuralCab.xcodeproj/xcuserdata/thiagolobato.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Builds/MacOSX/RecentFilesMenuTemplate.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/RecentFilesMenuTemplate.nib -------------------------------------------------------------------------------- /Builds/MacOSX/build/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/build/.DS_Store -------------------------------------------------------------------------------- /Builds/MacOSX/build/Debug/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/build/Debug/.DS_Store -------------------------------------------------------------------------------- /Builds/MacOSX/build/Release/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Builds/MacOSX/build/Release/.DS_Store -------------------------------------------------------------------------------- /JuceLibraryCode/JuceHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/JuceHeader.h -------------------------------------------------------------------------------- /JuceLibraryCode/JucePluginDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/JucePluginDefines.h -------------------------------------------------------------------------------- /JuceLibraryCode/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/ReadMe.txt -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_devices.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_devices.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_devices.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_formats.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_formats.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_formats.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AAX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AAX.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AAX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AAX.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU.r -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU_1.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU_1.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AU_2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AU_2.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_AUv3.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_AUv3.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS.r -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_1.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_2.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_3.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_4.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_RTAS_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_Standalone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_Standalone.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_Unity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_Unity.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST2.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST3.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_VST_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_VST_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_plugin_client_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_plugin_client_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_processors.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_processors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_processors.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_utils.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_audio_utils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_audio_utils.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_core.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_core.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_core.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_data_structures.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_data_structures.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_data_structures.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_dsp.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_dsp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_dsp.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_events.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_events.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_events.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_graphics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_graphics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_graphics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_basics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_gui_basics.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_basics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_gui_basics.mm -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_extra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_gui_extra.cpp -------------------------------------------------------------------------------- /JuceLibraryCode/include_juce_gui_extra.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/JuceLibraryCode/include_juce_gui_extra.mm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Neural Cab.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Neural Cab.jucer -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Source/.DS_Store -------------------------------------------------------------------------------- /Source/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Source/GUI.h -------------------------------------------------------------------------------- /Source/NeuralCabinet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Source/NeuralCabinet.cpp -------------------------------------------------------------------------------- /Source/NeuralCabinet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Source/NeuralCabinet.h -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Source/SpectrumComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Source/SpectrumComponent.cpp -------------------------------------------------------------------------------- /Source/SpectrumComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Source/SpectrumComponent.h -------------------------------------------------------------------------------- /Source/WOLA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/Source/WOLA.h -------------------------------------------------------------------------------- /dependencies/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/.DS_Store -------------------------------------------------------------------------------- /dependencies/VAECabinet.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/VAECabinet.onnx -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/.DS_Store -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/GIT_COMMIT_ID: -------------------------------------------------------------------------------- 1 | 366f4ebcb425b6a47c2b0decd3b39fa14eb9dbf6 2 | -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/LICENSE -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/Privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/Privacy.md -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/README.md -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/VERSION_NUMBER: -------------------------------------------------------------------------------- 1 | 1.11.1 2 | -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/include/coreml_execution_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/include/coreml_execution_provider.h -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/include/cpu_provider_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/include/cpu_provider_factory.h -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/include/onnxruntime_c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/include/onnxruntime_c_api.h -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/include/onnxruntime_cxx_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/include/onnxruntime_cxx_api.h -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/include/onnxruntime_cxx_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/include/onnxruntime_cxx_inline.h -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/include/onnxruntime_run_options_config_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/include/onnxruntime_run_options_config_keys.h -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/include/onnxruntime_session_options_config_keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/include/onnxruntime_session_options_config_keys.h -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/include/provider_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/include/provider_options.h -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/lib/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/lib/.DS_Store -------------------------------------------------------------------------------- /dependencies/onnxruntime-osx-arm64-1.11.1/lib/libonnxruntime.1.11.1.dylib.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiagohgl/neural-cab-audio-plugin/HEAD/dependencies/onnxruntime-osx-arm64-1.11.1/lib/libonnxruntime.1.11.1.dylib.dSYM/Contents/Info.plist --------------------------------------------------------------------------------