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.

113 lines
3.2KB

  1. /*
  2. * DISTRHO 3BandSplitter Plugin, based on 3BandSplitter by Michael Gruhn
  3. * Copyright (C) 2007 Michael Gruhn <michael-gruhn@web.de>
  4. * Copyright (C) 2012-2013 Filipe Coelho <falktx@falktx.com>
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation.
  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 Lesser General Public License for more details.
  14. *
  15. * For a full copy of the license see the doc/LGPL.txt file.
  16. */
  17. #ifndef DISTRHO_PLUGIN_3BANDSPLITTER_HPP_INCLUDED
  18. #define DISTRHO_PLUGIN_3BANDSPLITTER_HPP_INCLUDED
  19. #include "DistrhoPlugin.hpp"
  20. START_NAMESPACE_DISTRHO
  21. // -----------------------------------------------------------------------
  22. class DistrhoPlugin3BandSplitter : public Plugin
  23. {
  24. public:
  25. enum Parameters
  26. {
  27. paramLow = 0,
  28. paramMid,
  29. paramHigh,
  30. paramMaster,
  31. paramLowMidFreq,
  32. paramMidHighFreq,
  33. paramCount
  34. };
  35. DistrhoPlugin3BandSplitter();
  36. ~DistrhoPlugin3BandSplitter() override;
  37. protected:
  38. // -------------------------------------------------------------------
  39. // Information
  40. const char* d_getLabel() const noexcept override
  41. {
  42. return "3BandSplitter";
  43. }
  44. const char* d_getMaker() const noexcept override
  45. {
  46. return "DISTRHO";
  47. }
  48. const char* d_getLicense() const noexcept override
  49. {
  50. return "LGPL";
  51. }
  52. uint32_t d_getVersion() const noexcept override
  53. {
  54. return 0x1000;
  55. }
  56. long d_getUniqueId() const noexcept override
  57. {
  58. return d_cconst('D', '3', 'E', 'S');
  59. }
  60. // -------------------------------------------------------------------
  61. // Init
  62. void d_initParameter(uint32_t index, Parameter& parameter) override;
  63. void d_initProgramName(uint32_t index, d_string& programName) override;
  64. // -------------------------------------------------------------------
  65. // Internal data
  66. float d_getParameterValue(uint32_t index) const override;
  67. void d_setParameterValue(uint32_t index, float value) override;
  68. void d_setProgram(uint32_t index) override;
  69. // -------------------------------------------------------------------
  70. // Process
  71. void d_activate() override;
  72. void d_deactivate() override;
  73. void d_run(float** inputs, float** outputs, uint32_t frames, const MidiEvent* midiEvents, uint32_t midiEventCount) override;
  74. // -------------------------------------------------------------------
  75. private:
  76. float fLow, fMid, fHigh, fMaster, fLowMidFreq, fMidHighFreq;
  77. float lowVol, midVol, highVol, outVol;
  78. float freqLP, freqHP;
  79. float xLP, a0LP, b1LP;
  80. float xHP, a0HP, b1HP;
  81. float out1LP, out2LP, out1HP, out2HP;
  82. float tmp1LP, tmp2LP, tmp1HP, tmp2HP;
  83. };
  84. // -----------------------------------------------------------------------
  85. END_NAMESPACE_DISTRHO
  86. #endif // DISTRHO_PLUGIN_3BANDSPLITTER_HPP_INCLUDED