Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fluid.voiceallocator community testing build #249

Open
wants to merge 55 commits into
base: main
Choose a base branch
from
Open
Changes from 2 commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
4a7d9da
ampfeatureclient - default value fix
tremblap Feb 23, 2023
da1cb2f
skeleton of voiceallocator, to troubleshoot multi control in management
tremblap Feb 27, 2023
4944184
added a better monitoring of 3 x 3 input
tremblap Feb 27, 2023
51376a4
clang'd
tremblap Feb 27, 2023
f694a36
Merge pull request #230 from flucoma/pre-production
tremblap Mar 28, 2023
7ca651f
Merge branch 'main' into feature/voice-allocator
tremblap Aug 9, 2023
734c48b
allocate fixed arrays for the output to see if that helps...
tremblap Aug 14, 2023
23f1a72
Merge branch 'main' into feature/voice-allocator
tremblap Aug 14, 2023
b1af337
fix for dynamic mem alloc but breaks stats - pushed at @aharker's req…
tremblap Aug 16, 2023
e90830b
Merge remote-tracking branch 'origin/main' into feature/voice-allocator
tremblap Aug 17, 2023
26635b3
new const needs
tremblap Aug 17, 2023
e2ece72
Changes for how clients determine if the output follows the input size
AlexHarker Aug 17, 2023
d5b4a7c
remove duplicate
tremblap Aug 17, 2023
d6c2c20
VoiceAllocator.hpp -> VoiceAllocatorClient.hpp
fearn-e Aug 20, 2023
77c04d4
names & boilerplate
fearn-e Aug 20, 2023
8954b29
partialTracking new getActiveVoices function
fearn-e Aug 20, 2023
246eb25
parameter list for voiceallocator
fearn-e Aug 20, 2023
d6813d6
functional allocator but still bad track IDs
fearn-e Aug 20, 2023
6a9ae43
allocator algo somewhat implemented, compiles but weird behaviour
fearn-e Aug 21, 2023
0a45601
past me apparently hoping a non-looped IF can clear a queue
fearn-e Aug 21, 2023
be7af8e
proper conversion from amp to dB + convert back to amp
fearn-e Aug 21, 2023
61d6cb5
removing mInputSize
fearn-e Aug 21, 2023
4713d3c
comments
fearn-e Aug 21, 2023
af2c896
allows existing voices to change their freq/mag
fearn-e Aug 21, 2023
d12ae68
fully removed mInputSize
fearn-e Aug 21, 2023
51cde4d
fixed bug with allocator loop for removing voices ending too early
fearn-e Aug 21, 2023
dca9460
output proper sorted voiceID instead of partialTracking ID
fearn-e Aug 21, 2023
15f6b41
voice stealing comment
fearn-e Aug 21, 2023
ab1ccf0
states & stealing, imperfect
fearn-e Aug 21, 2023
d938027
proper init for queues/deques
fearn-e Aug 21, 2023
2757d7a
add pruning
fearn-e Aug 21, 2023
f0b1d4a
readability
fearn-e Aug 21, 2023
6360dd1
init() call for clear messagess
fearn-e Aug 21, 2023
af0938c
replaced stealing with sorting
fearn-e Aug 21, 2023
c6c6351
clearer layout of function calls in process + resize outgoingVoices
fearn-e Aug 21, 2023
02c26a5
temp removal of trackMethod param, switching to hung causes issues
fearn-e Aug 23, 2023
57a5051
consistency of an enumparam with other flucoma objects
fearn-e Aug 23, 2023
6a308c6
Merge remote-tracking branch 'origin/main' into feature/voice-allocator
fearn-e Aug 23, 2023
f7ddbf5
removing random comments
fearn-e Aug 23, 2023
03fcf68
Merge branch 'main' into feature/voice-allocator
tremblap Sep 1, 2023
1a536f4
algo-client file code split
fearn-e Sep 11, 2023
e1d5950
Merge branch 'feature/voice-allocator' of https://github.com/fearn-e/…
tremblap Sep 17, 2023
d49c1dd
Merge branch 'main' into pre-production
tremblap Mar 19, 2024
e08caed
Merge branch 'main' into pre-production
tremblap Mar 19, 2024
60c944d
Merge pull request #267 from flucoma/pre-production
tremblap Apr 2, 2024
09221ee
Merge branch 'main' into feature/voice-allocator
tremblap Apr 3, 2024
633ff8f
implement reset/init
tremblap Apr 4, 2024
c0c14df
instantiation initialisation was needed
tremblap Apr 6, 2024
c684d83
cleaned the order of initialisation
tremblap Apr 7, 2024
618fd10
first working NRT adaptor
tremblap Jul 17, 2024
c81e050
Merge branch 'production' into feature/voice-allocator
tremblap Jul 17, 2024
e15fd18
forgot the cmake
tremblap Jul 17, 2024
17a49b2
added task evolution
tremblap Jul 17, 2024
a2d385e
Merge branch 'main' into feature/voice-allocator
tremblap Jul 17, 2024
536215d
clang_formatted
tremblap Aug 27, 2024
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
2 changes: 1 addition & 1 deletion include/clients/rt/AmpFeatureClient.hpp
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ constexpr auto AmpFeatureParams = defineParameters(
LongParam("fastRampDown", "Fast Envelope Ramp Down Length", 1, Min(1)),
LongParam("slowRampUp", "Slow Envelope Ramp Up Length", 100, Min(1)),
LongParam("slowRampDown", "Slow Envelope Ramp Down Length", 100, Min(1)),
FloatParam("floor", "Floor value (dB)", -145, Min(-144), Max(144)),
FloatParam("floor", "Floor value (dB)", -144, Min(-144), Max(144)),
FloatParam("highPassFreq", "High-Pass Filter Cutoff", 85, Min(0)));

class AmpFeatureClient : public FluidBaseClient, public AudioIn, public AudioOut