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.

zynaddsubfx-src.cpp 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Carla Native Plugins
  3. * Copyright (C) 2012-2013 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. // zynaddsubfx includes
  18. #include "zynaddsubfx/DSP/AnalogFilter.cpp"
  19. #include "zynaddsubfx/DSP/FFTwrapper.cpp"
  20. #include "zynaddsubfx/DSP/Filter.cpp"
  21. #include "zynaddsubfx/DSP/FormantFilter.cpp"
  22. #include "zynaddsubfx/DSP/SVFilter.cpp"
  23. #include "zynaddsubfx/DSP/Unison.cpp"
  24. #include "zynaddsubfx/Effects/Alienwah.cpp"
  25. #include "zynaddsubfx/Effects/Chorus.cpp"
  26. #include "zynaddsubfx/Effects/Distorsion.cpp"
  27. #include "zynaddsubfx/Effects/DynamicFilter.cpp"
  28. #include "zynaddsubfx/Effects/Echo.cpp"
  29. #include "zynaddsubfx/Effects/Effect.cpp"
  30. #include "zynaddsubfx/Effects/EffectLFO.cpp"
  31. #include "zynaddsubfx/Effects/EffectMgr.cpp"
  32. #include "zynaddsubfx/Effects/EQ.cpp"
  33. #include "zynaddsubfx/Effects/Phaser.cpp"
  34. #include "zynaddsubfx/Effects/Reverb.cpp"
  35. #include "zynaddsubfx/Misc/Bank.cpp"
  36. #include "zynaddsubfx/Misc/Config.cpp"
  37. #include "zynaddsubfx/Misc/Dump.cpp"
  38. #include "zynaddsubfx/Misc/Master.cpp"
  39. #include "zynaddsubfx/Misc/Microtonal.cpp"
  40. #include "zynaddsubfx/Misc/Part.cpp"
  41. #include "zynaddsubfx/Misc/Recorder.cpp"
  42. //#include "zynaddsubfx/Misc/Stereo.cpp"
  43. #include "zynaddsubfx/Misc/Util.cpp"
  44. #include "zynaddsubfx/Misc/WavFile.cpp"
  45. #include "zynaddsubfx/Misc/WaveShapeSmps.cpp"
  46. #include "zynaddsubfx/Misc/XMLwrapper.cpp"
  47. #include "zynaddsubfx/Params/ADnoteParameters.cpp"
  48. #include "zynaddsubfx/Params/Controller.cpp"
  49. #include "zynaddsubfx/Params/EnvelopeParams.cpp"
  50. #include "zynaddsubfx/Params/FilterParams.cpp"
  51. #include "zynaddsubfx/Params/LFOParams.cpp"
  52. #include "zynaddsubfx/Params/PADnoteParameters.cpp"
  53. #include "zynaddsubfx/Params/Presets.cpp"
  54. #include "zynaddsubfx/Params/PresetsArray.cpp"
  55. #include "zynaddsubfx/Params/PresetsStore.cpp"
  56. #include "zynaddsubfx/Params/SUBnoteParameters.cpp"
  57. #include "zynaddsubfx/Synth/ADnote.cpp"
  58. #include "zynaddsubfx/Synth/Envelope.cpp"
  59. #include "zynaddsubfx/Synth/LFO.cpp"
  60. #include "zynaddsubfx/Synth/OscilGen.cpp"
  61. #include "zynaddsubfx/Synth/PADnote.cpp"
  62. #include "zynaddsubfx/Synth/Resonance.cpp"
  63. #include "zynaddsubfx/Synth/SUBnote.cpp"
  64. #include "zynaddsubfx/Synth/SynthNote.cpp"