1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-02 06:40:12 +01:00

Start work on new Loudness effect

This is based on my old loudness effect prototype which was included
in the Normalize effect.

Create all source files and add them to all build systems.
Currently, the effect only consists of a GUI mockup.
Create Octave+mod-script-pipe based dummy unit-test as well.
This commit is contained in:
Max Maisel
2019-03-15 15:56:17 +01:00
parent eb2161d3aa
commit 6da48db127
11 changed files with 733 additions and 2 deletions

16
tests/octave/README.md Normal file
View File

@@ -0,0 +1,16 @@
# Unit tests for Audacity effects
These unit tests check the correctness of Audacity's effect calculations
against GNU octave. Therefore some simple deterministic and random
sample data is generated and passed to Audacity via mod-script-pipe.
To run a test, run: (replace `<desired_test.m>` with the correct filename)
```
./run_test.m <desired_test.m>
```
The tests will print the results to the terminal and will return 0 on
success and non-zero on error.
To run those tests you need a Linux system with GNU Octave,
octave-forge-signal and Audacity mod-script-pipe installed.