You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CascadeSynthesisH.inl 501B

123456789101112131415161718
  1. // Process a block of samples in the given form
  2. template <class StateType, typename Sample>
  3. void processSynthesis (int nSamples, Sample* dest, StateType& state) const
  4. {
  5. while (--nSamples >= 0)
  6. {
  7. *dest = state.processSynthesis (*dest, *this);
  8. dest++;
  9. }
  10. }
  11. void setLayoutSynthesis (const LayoutBase& proto);
  12. void setupSynthesis (int order,
  13. double sampleRate,
  14. double centerFrequency,
  15. double widthFrequency) { assert(false); }