Audio plugin host https://kx.studio/carla
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.

27 lines
701B

  1. /*
  2. ZynAddSubFX - a software synthesizer
  3. WaveShapeSmps.h - Sample distortions
  4. Copyright (C) 2002-2005 Nasca Octavian Paul
  5. Author: Nasca Octavian Paul
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or (at your option) any later version.
  10. */
  11. #ifndef WAVESHAPESMPS_H
  12. #define WAVESHAPESMPS_H
  13. namespace zyncarla {
  14. //Waveshaping(called by Distorsion effect and waveshape from OscilGen)
  15. void waveShapeSmps(int n,
  16. float *smps,
  17. unsigned char type,
  18. unsigned char drive);
  19. }
  20. #endif