Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ jobs:
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt install libasound2-dev libcurl4-openssl-dev libx11-dev libxinerama-dev libxext-dev libfreetype6-dev libwebkit2gtk-4.0-dev libglu1-mesa-dev libjack-jackd2-dev lv2-dev
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 9
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 9
sudo apt install libasound2-dev libx11-dev libxcomposite-dev libxcursor-dev libxext-dev libxinerama-dev libxrandr-dev libxrender-dev libfreetype6-dev libfontconfig1-dev libglu1-mesa-dev libjack-jackd2-dev

- name: Get latest CMake
uses: lukka/get-cmake@latest
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
url = https://github.com/jatinchowdhury18/RTNeural
[submodule "Plugin/modules/JUCE"]
path = Plugin/modules/JUCE
url = https://github.com/lv2-porting-project/JUCE
url = https://github.com/juce-framework/JUCE
[submodule "Plugin/modules/clap-juce-extensions"]
path = Plugin/modules/clap-juce-extensions
url = https://github.com/free-audio/clap-juce-extensions
4 changes: 2 additions & 2 deletions Plugin/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.15)
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.9" CACHE STRING "Minimum OS X deployment target")
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.12" CACHE STRING "Minimum OS X deployment target")
set(CMAKE_CXX_STANDARD 17)
project(CHOWTapeModel VERSION 2.11.4)

Expand Down Expand Up @@ -57,7 +57,7 @@ juce_add_plugin(CHOWTapeModel
AU_MAIN_TYPE kAudioUnitType_Effect
AAX_CATEGORY AAX_ePlugInCategory_Harmonic

LV2_URI https://github.com/jatinchowdhury18/AnalogTapeModel
LV2URI https://github.com/jatinchowdhury18/AnalogTapeModel

ICON_BIG Source/GUI/Assets/logo.png
MICROPHONE_PERMISSION_ENABLED TRUE
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Source/Headless/UnitTests/MixGroupsTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class MixGroupsTest : public UnitTest
std::unique_ptr<Proc> createPlugin()
{
auto proc = createPluginFilterOfType (AudioProcessor::WrapperType::wrapperType_Standalone);
std::unique_ptr<Proc> plugin (dynamic_cast<Proc*> (proc));
std::unique_ptr<Proc> plugin (dynamic_cast<Proc*> (proc.release()));
return std::move (plugin);
}

Expand Down
2 changes: 1 addition & 1 deletion Plugin/Source/Headless/UnitTests/MultiChannelTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class MultiChannelTest : public UnitTest
std::unique_ptr<Proc> createPlugin()
{
auto proc = createPluginFilterOfType (AudioProcessor::WrapperType::wrapperType_Standalone);
std::unique_ptr<Proc> plugin (dynamic_cast<Proc*> (proc));
std::unique_ptr<Proc> plugin (dynamic_cast<Proc*> (proc.release()));
return std::move (plugin);
}

Expand Down
3 changes: 2 additions & 1 deletion Plugin/Source/Headless/UnitTests/PresetLevelTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ class PresetLevelTest : public UnitTest

std::unique_ptr<ChowtapeModelAudioProcessor> proc {
dynamic_cast<ChowtapeModelAudioProcessor*> (createPluginFilterOfType (
AudioProcessor::WrapperType::wrapperType_Standalone))
AudioProcessor::WrapperType::wrapperType_Standalone)
.release())
};

static constexpr double sampleRate = 48000.0;
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Source/Processors/Timing_Effects/FlutterProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class FlutterProcess
static constexpr float phaseOff3 = -MathConstants<float>::pi / 10.0f;

AudioBuffer<float> flutterBuffer;
float** flutterPtrs;
float* const* flutterPtrs;
float fs = 48000.0f;

static constexpr float depthSlewMin = 0.001f;
Expand Down
2 changes: 1 addition & 1 deletion Plugin/Source/Processors/Timing_Effects/WowProcess.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class WowProcess
std::vector<SmoothedValue<float, ValueSmoothingTypes::Multiplicative>> depthSlew;

AudioBuffer<float> wowBuffer;
float** wowPtrs = nullptr;
float* const* wowPtrs = nullptr;
float fs = 44100.0f;

OHProcess ohProc;
Expand Down
1 change: 0 additions & 1 deletion Plugin/modules/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ add_diagnostic_info(juce_plugin_modules)

target_compile_definitions(juce_plugin_modules
PUBLIC
JUCE_DISPLAY_SPLASH_SCREEN=0
JUCE_REPORT_APP_USAGE=0
JUCE_WEB_BROWSER=0
JUCE_USE_CURL=0
Expand Down
2 changes: 1 addition & 1 deletion Plugin/modules/JUCE
Submodule JUCE updated 3578 files
2 changes: 1 addition & 1 deletion Plugin/modules/RTNeural
Submodule RTNeural updated 560 files
2 changes: 1 addition & 1 deletion Plugin/modules/foleys_gui_magic
Loading