You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a weird one that I don't fully understand. Mostly just writing this down so I don't forget.
I was messing with dynamically setting the input and output channels for my Rave chugin. Basically, when the chugin loads the model file it sets the number of input and output channels based off of whether it's doing forward/encode/decode.
This looks something like this in the cpp:
Chuck_UGen* m_self; // the chuck ugen pointer I'm storing in my Rave helper class
m_self->m_num_ins = m_in_dim;
m_self->m_num_outs = m_out_dim;
m_self->m_multi_chan_size = m_in_dim > m_out_dim ? m_in_dim: m_out_dim;
However if I do that, then run the following code:
not only can you hear the output of rave, but the adc is just getting passed through to the dac directly (setting the gain of Rave to 0 doesn't change this at all so it's just stepping over it somehow)
The text was updated successfully, but these errors were encountered:
This is a weird one that I don't fully understand. Mostly just writing this down so I don't forget.
I was messing with dynamically setting the input and output channels for my Rave chugin. Basically, when the chugin loads the model file it sets the number of input and output channels based off of whether it's doing forward/encode/decode.
This looks something like this in the cpp:
However if I do that, then run the following code:
not only can you hear the output of rave, but the adc is just getting passed through to the dac directly (setting the gain of Rave to 0 doesn't change this at all so it's just stepping over it somehow)
The text was updated successfully, but these errors were encountered: