DISTRHO Plugin Framework
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.

110 lines
2.8KB

  1. /*
  2. * DISTRHO Plugin Framework (DPF)
  3. * Copyright (C) 2012-2019 Filipe Coelho <falktx@falktx.com>
  4. * Copyright (C) 2019-2021 Jean Pierre Cimalando <jp-dev@inbox.ru>
  5. *
  6. * Permission to use, copy, modify, and/or distribute this software for any purpose with
  7. * or without fee is hereby granted, provided that the above copyright notice and this
  8. * permission notice appear in all copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
  11. * TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
  12. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
  14. * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  15. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16. */
  17. #include "DistrhoPlugin.hpp"
  18. #include <string.h>
  19. START_NAMESPACE_DISTRHO
  20. class CairoExamplePlugin : public Plugin
  21. {
  22. public:
  23. CairoExamplePlugin()
  24. : Plugin(0, 0, 0)
  25. {
  26. }
  27. const char* getLabel() const
  28. {
  29. return "Cairo DPF Example";
  30. }
  31. const char* getMaker() const
  32. {
  33. return "Jean Pierre Cimalando";
  34. }
  35. const char* getLicense() const
  36. {
  37. return "ISC";
  38. }
  39. uint32_t getVersion() const
  40. {
  41. return d_version(1, 0, 0);
  42. }
  43. int64_t getUniqueId() const
  44. {
  45. return d_cconst('d', 'C', 'a', 'i');
  46. }
  47. /**
  48. Initialize the audio port @a index.@n
  49. This function will be called once, shortly after the plugin is created.
  50. */
  51. void initAudioPort(bool input, uint32_t index, AudioPort& port) override
  52. {
  53. // treat meter audio ports as stereo
  54. port.groupId = kPortGroupMono;
  55. // everything else is as default
  56. Plugin::initAudioPort(input, index, port);
  57. }
  58. void initParameter(uint32_t index, Parameter& parameter)
  59. {
  60. // unused
  61. (void)index;
  62. (void)parameter;
  63. }
  64. float getParameterValue(uint32_t index) const
  65. {
  66. return 0;
  67. // unused
  68. (void)index;
  69. }
  70. void setParameterValue(uint32_t index, float value)
  71. {
  72. // unused
  73. (void)index;
  74. (void)value;
  75. }
  76. void run(const float** inputs, float** outputs, uint32_t frames)
  77. {
  78. /**
  79. This plugin does nothing, it just demonstrates cairo UI usage.
  80. So here we directly copy inputs over outputs, leaving the audio untouched.
  81. We need to be careful in case the host re-uses the same buffer for both inputs and outputs.
  82. */
  83. if (outputs[0] != inputs[0])
  84. std::memcpy(outputs[0], inputs[0], sizeof(float)*frames);
  85. }
  86. };
  87. Plugin* createPlugin()
  88. {
  89. return new CairoExamplePlugin;
  90. }
  91. END_NAMESPACE_DISTRHO