How would I add a DryWetMixer to an ProcessorChain
as of right now my processor chain has a panner and a gain but I wanted to add a dry wet mixer and a Linkwitz-Riley however I keep running into jasserts for example
ProcessorChain requires a process function in all of the effects in the chain which DryWetMix doesn’t have so it wouldn’t be possible. You need to have access to the input signal which ProcessorChain doesn’t provide - only the output from the previous effect in the chain. Its a linear chain of effects, not a graph.
@chkn, is an all-pass filter suitable to counteract the phase introduced by LR filters or do I need to use a delay-line?
could you access the methods from the processor chain using the get method if you put a dry wet mixer in? so even though you pass the process into the processorChain you still access the process for dry wet mixer independently using the get method???