From 729ec10fc2875d9b72e9bc0cfaf3cae0835a656d Mon Sep 17 00:00:00 2001 From: Stephane Letz Date: Mon, 23 Sep 2024 08:02:45 +0200 Subject: [PATCH] Add Faust DSP Testbench in JUCE architecture. --- architecture/juce/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/architecture/juce/README.md b/architecture/juce/README.md index ff1eb4010f..4fd2c31fc9 100644 --- a/architecture/juce/README.md +++ b/architecture/juce/README.md @@ -82,3 +82,7 @@ Some plugins add latency in the signal path. A special global metadata can be us - `declare latency_frames "7000";` (or alternatively `declare latency_samples "7000";`) to express the latency in samples/frames - `declare latency_sec "0.5";` to express the latency in seconds, to be converted internally in samples/frames using the host sample rate + +## Faust DSP Testbench + +As a fork of the [DSP-Testbench](https://github.com/AndrewJJ/DSP-Testbench) project, [Faust DSP Testbench](https://github.com/grame-cncm/Faust-DSP-Testbench) is designed to help developers using the [JUCE framework](https://juce.com) to analyse their Faust DSP by providing a test harness for code inheriting from `juce::dsp::ProcessorBase`. The harness provides signal sources, routing, analysis and monitoring functions.