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.

midi-split.c 3.6KB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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 GPL.txt file
  16. */
  17. #include "CarlaNative.h"
  18. #include "CarlaMIDI.h"
  19. #include <stdlib.h>
  20. typedef struct _MidiSplitHandle {
  21. HostDescriptor* host;
  22. } MidiSplitHandle;
  23. static PluginHandle midiSplit_instantiate(const PluginDescriptor* _this_, HostDescriptor* host)
  24. {
  25. MidiSplitHandle* const handle = (MidiSplitHandle*)malloc(sizeof(MidiSplitHandle));
  26. if (handle != NULL)
  27. {
  28. handle->host = host;
  29. return handle;
  30. }
  31. return NULL;
  32. // unused
  33. (void)_this_;
  34. }
  35. static void midiSplit_cleanup(PluginHandle handle)
  36. {
  37. free((MidiSplitHandle*)handle);
  38. }
  39. static void midiSplit_process(PluginHandle handle, float** inBuffer, float** outBuffer, uint32_t frames, uint32_t midiEventCount, const MidiEvent* midiEvents)
  40. {
  41. HostDescriptor* const host = ((MidiSplitHandle*)handle)->host;
  42. MidiEvent tmpEvent;
  43. for (uint32_t i=0; i < midiEventCount; i++)
  44. {
  45. const MidiEvent* const midiEvent = &midiEvents[i];
  46. const uint8_t status = MIDI_GET_STATUS_FROM_DATA(midiEvent->data);
  47. const uint8_t channel = MIDI_GET_CHANNEL_FROM_DATA(midiEvent->data);
  48. if (channel >= MAX_MIDI_CHANNELS)
  49. continue;
  50. tmpEvent.port = channel;
  51. tmpEvent.time = midiEvent->time;
  52. tmpEvent.data[0] = status;
  53. tmpEvent.data[1] = midiEvent->data[1];
  54. tmpEvent.data[2] = midiEvent->data[2];
  55. tmpEvent.data[3] = midiEvent->data[3];
  56. tmpEvent.size = midiEvent->size;
  57. host->write_midi_event(host->handle, &tmpEvent);
  58. }
  59. return;
  60. // unused
  61. (void)inBuffer;
  62. (void)outBuffer;
  63. (void)frames;
  64. }
  65. // -----------------------------------------------------------------------
  66. static const PluginDescriptor midiSplitDesc = {
  67. .category = PLUGIN_CATEGORY_UTILITY,
  68. .hints = PLUGIN_IS_RTSAFE,
  69. .audioIns = 0,
  70. .audioOuts = 0,
  71. .midiIns = 1,
  72. .midiOuts = 16,
  73. .parameterIns = 0,
  74. .parameterOuts = 0,
  75. .name = "MIDI Split",
  76. .label = "midiSplit",
  77. .maker = "falkTX",
  78. .copyright = "GNU GPL v2+",
  79. .instantiate = midiSplit_instantiate,
  80. .cleanup = midiSplit_cleanup,
  81. .get_parameter_count = NULL,
  82. .get_parameter_info = NULL,
  83. .get_parameter_value = NULL,
  84. .get_parameter_text = NULL,
  85. .get_midi_program_count = NULL,
  86. .get_midi_program_info = NULL,
  87. .set_parameter_value = NULL,
  88. .set_midi_program = NULL,
  89. .set_custom_data = NULL,
  90. .ui_show = NULL,
  91. .ui_idle = NULL,
  92. .ui_set_parameter_value = NULL,
  93. .ui_set_midi_program = NULL,
  94. .ui_set_custom_data = NULL,
  95. .activate = NULL,
  96. .deactivate = NULL,
  97. .process = midiSplit_process,
  98. .get_state = NULL,
  99. .set_state = NULL,
  100. .dispatcher = NULL
  101. };
  102. // -----------------------------------------------------------------------
  103. void carla_register_native_plugin_midiSplit()
  104. {
  105. carla_register_native_plugin(&midiSplitDesc);
  106. }
  107. // -----------------------------------------------------------------------