Example #1
0
void GxTubeDelay::init_dsp_mono(uint32_t rate)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
#ifndef __SSE__
  wn = noiser::plugin();
  wn->set_samplerate(rate, wn);
#endif
  tubedelay->set_samplerate(rate, tubedelay); // init the DSP class
}
Example #2
0
void Gx_studiopre::init_dsp_mono(uint32_t rate)
{
    AVOIDDENORMALS(); // init the SSE denormal protection
#ifndef __SSE__
    wn = noiser::plugin();
    wn->set_samplerate(rate, wn);
#endif
    studiopre_mono->set_samplerate(rate, studiopre_mono); // init the DSP class
}
Example #3
0
void Gx_detune_::init_dsp_(uint32_t rate, uint32_t bufsize_)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
  bufsize = bufsize_;
  detune::smbPitchShift::set_buffersize(detune, bufsize);
  detune->set_samplerate(rate, detune); // init the DSP class
}
Example #4
0
void Gx_duck_delay_::init_dsp_(uint32_t rate)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
  duck_delay->set_samplerate(rate, duck_delay); // init the DSP class
}
Example #5
0
void Gx_hogsfoot_::init_dsp_(uint32_t rate)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
  hogsfoot->set_samplerate(rate, hogsfoot); // init the DSP class
}
Example #6
0
void Gx_fuzzfacefm_::init_dsp_(uint32_t rate)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
  fuzzfacefm->set_samplerate(rate, fuzzfacefm); // init the DSP class
}
Example #7
0
void Gx_muff_::init_dsp_(uint32_t rate)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
  muff->set_samplerate(rate, muff); // init the DSP class
}
Example #8
0
void Gx_echo_stereo::init_dsp_stereo(uint32_t rate)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
  echo_st->set_samplerate(rate, echo_st); // init the DSP class
}
Example #9
0
void Gx_rangem_::init_dsp_(uint32_t rate)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
  rangem->set_samplerate(rate, rangem); // init the DSP class
}
Example #10
0
void Gx_mbdistortion_::init_dsp_(uint32_t rate)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
  mbdistortion->set_samplerate(rate, mbdistortion); // init the DSP class
}
Example #11
0
void Gx_barkgraphiceq_::init_dsp_(uint32_t rate)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
  barkgraphiceq->set_samplerate(rate, barkgraphiceq); // init the DSP class
}
Example #12
0
void Gx_shimmizita_::init_dsp_(uint32_t rate)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
  shimmizita->set_samplerate(rate, shimmizita); // init the DSP class
}
Example #13
0
void Gx_digital_delay_st_::init_dsp_(uint32_t rate)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
  digital_delay_st->set_samplerate(rate, digital_delay_st); // init the DSP class
}
Example #14
0
void Gx_compressor::init_dsp_mono(uint32_t rate)
{
  AVOIDDENORMALS(); // init the SSE denormal protection
  compressor_st->set_samplerate(rate, compressor_st); // init the DSP class
}