-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Clearing out vectors holding spectral processes directory instead of by the parent vector * Removed Logger. This is not useful * Perhaps better clearing of spec processes * validating phase lock * If preparing to play then try not to perform other operations on the audio processors * Added SSF to au validation * added spectral gate to au validation * validating all plugins and exiting early if error * fixed more race conditions * Frequency shift passes validation * fixed bin scrambler out of bounds error * initialising wave table if fft size changed before playback started * Using correct variable when detecting races'
- Loading branch information
1 parent
26b7b42
commit a14a8d8
Showing
11 changed files
with
187 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
# Exit early if any command fails | ||
set -e | ||
|
||
# Frequency shifter | ||
auval -strict -v aumf SPFS STPW | ||
|
||
# Bin Scrambler | ||
auval -strict -v aumf SPBS STPW | ||
|
||
# Frequency magnet | ||
auval -strict -v aumf SPFM STPW | ||
|
||
# Morph | ||
auval -strict -v aumf SPMO STPW | ||
|
||
# Phase lock | ||
auval -strict -v aumf SPPL STPW | ||
|
||
# Sinusoidal Sharped Filer | ||
auval -strict -v aumf SPSS STPW | ||
|
||
# Spectral Gate | ||
auval -strict -v aumf SPSG STPW |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// TODO: check if this class is unused | ||
|
||
#include "FftThread.h" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.