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.

1640 lines
36KB

  1. /*
  2. * Carla Plugin Host
  3. * Copyright (C) 2011-2019 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. #ifndef CARLA_BACKEND_H_INCLUDED
  18. #define CARLA_BACKEND_H_INCLUDED
  19. #include "CarlaDefines.h"
  20. #ifdef CARLA_PROPER_CPP11_SUPPORT
  21. # include <cstdint>
  22. #else
  23. # include <stdint.h>
  24. #endif
  25. #define STR_MAX 0xFF
  26. #ifdef __cplusplus
  27. # define CARLA_BACKEND_START_NAMESPACE namespace CarlaBackend {
  28. # define CARLA_BACKEND_END_NAMESPACE }
  29. # define CARLA_BACKEND_USE_NAMESPACE using namespace CarlaBackend;
  30. # include <algorithm>
  31. # include <cmath>
  32. # include <limits>
  33. /* Start namespace */
  34. CARLA_BACKEND_START_NAMESPACE
  35. #endif
  36. /*!
  37. * @defgroup CarlaBackendAPI Carla Backend API
  38. *
  39. * The Carla Backend API.
  40. *
  41. * These are the base definitions for everything in the Carla backend code.
  42. * @{
  43. */
  44. /* ------------------------------------------------------------------------------------------------------------
  45. * Carla Backend API (base definitions) */
  46. /*!
  47. * Maximum default number of loadable plugins.
  48. */
  49. static const uint MAX_DEFAULT_PLUGINS = 99;
  50. /*!
  51. * Maximum number of loadable plugins in rack mode.
  52. */
  53. static const uint MAX_RACK_PLUGINS = 16;
  54. /*!
  55. * Maximum number of loadable plugins in patchbay mode.
  56. */
  57. static const uint MAX_PATCHBAY_PLUGINS = 255;
  58. /*!
  59. * Maximum default number of parameters allowed.
  60. * @see ENGINE_OPTION_MAX_PARAMETERS
  61. */
  62. static const uint MAX_DEFAULT_PARAMETERS = 200;
  63. /*!
  64. * The "plugin Id" for the global Carla instance.
  65. * Curently only used for audio peaks.
  66. */
  67. static const uint MAIN_CARLA_PLUGIN_ID = 0xFFFF;
  68. /* ------------------------------------------------------------------------------------------------------------
  69. * Engine Driver Device Hints */
  70. /*!
  71. * @defgroup EngineDriverHints Engine Driver Device Hints
  72. *
  73. * Various engine driver device hints.
  74. * @see CarlaEngine::getHints(), CarlaEngine::getDriverDeviceInfo() and carla_get_engine_driver_device_info()
  75. * @{
  76. */
  77. /*!
  78. * Engine driver device has custom control-panel.
  79. */
  80. static const uint ENGINE_DRIVER_DEVICE_HAS_CONTROL_PANEL = 0x1;
  81. /*!
  82. * Engine driver device can use a triple-buffer (3 number of periods instead of the usual 2).
  83. * @see ENGINE_OPTION_AUDIO_NUM_PERIODS
  84. */
  85. static const uint ENGINE_DRIVER_DEVICE_CAN_TRIPLE_BUFFER = 0x2;
  86. /*!
  87. * Engine driver device can change buffer-size on the fly.
  88. * @see ENGINE_OPTION_AUDIO_BUFFER_SIZE
  89. */
  90. static const uint ENGINE_DRIVER_DEVICE_VARIABLE_BUFFER_SIZE = 0x4;
  91. /*!
  92. * Engine driver device can change sample-rate on the fly.
  93. * @see ENGINE_OPTION_AUDIO_SAMPLE_RATE
  94. */
  95. static const uint ENGINE_DRIVER_DEVICE_VARIABLE_SAMPLE_RATE = 0x8;
  96. /** @} */
  97. /* ------------------------------------------------------------------------------------------------------------
  98. * Plugin Hints */
  99. /*!
  100. * @defgroup PluginHints Plugin Hints
  101. *
  102. * Various plugin hints.
  103. * @see CarlaPlugin::getHints() and carla_get_plugin_info()
  104. * @{
  105. */
  106. /*!
  107. * Plugin is a bridge.
  108. * This hint is required because "bridge" itself is not a plugin type.
  109. */
  110. static const uint PLUGIN_IS_BRIDGE = 0x001;
  111. /*!
  112. * Plugin is hard real-time safe.
  113. */
  114. static const uint PLUGIN_IS_RTSAFE = 0x002;
  115. /*!
  116. * Plugin is a synth (produces sound).
  117. */
  118. static const uint PLUGIN_IS_SYNTH = 0x004;
  119. /*!
  120. * Plugin has its own custom UI.
  121. * @see CarlaPlugin::showCustomUI() and carla_show_custom_ui()
  122. */
  123. static const uint PLUGIN_HAS_CUSTOM_UI = 0x008;
  124. /*!
  125. * Plugin can use internal Dry/Wet control.
  126. */
  127. static const uint PLUGIN_CAN_DRYWET = 0x010;
  128. /*!
  129. * Plugin can use internal Volume control.
  130. */
  131. static const uint PLUGIN_CAN_VOLUME = 0x020;
  132. /*!
  133. * Plugin can use internal (Stereo) Balance controls.
  134. */
  135. static const uint PLUGIN_CAN_BALANCE = 0x040;
  136. /*!
  137. * Plugin can use internal (Mono) Panning control.
  138. */
  139. static const uint PLUGIN_CAN_PANNING = 0x080;
  140. /*!
  141. * Plugin needs a constant, fixed-size audio buffer.
  142. */
  143. static const uint PLUGIN_NEEDS_FIXED_BUFFERS = 0x100;
  144. /*!
  145. * Plugin needs to receive all UI events in the main thread.
  146. */
  147. static const uint PLUGIN_NEEDS_UI_MAIN_THREAD = 0x200;
  148. /*!
  149. * Plugin uses 1 program per MIDI channel.
  150. * @note: Only used in some internal plugins and sf2 files.
  151. */
  152. static const uint PLUGIN_USES_MULTI_PROGS = 0x400;
  153. /*!
  154. * Plugin can make use of inline display API.
  155. */
  156. static const uint PLUGIN_HAS_INLINE_DISPLAY = 0x800;
  157. /** @} */
  158. /* ------------------------------------------------------------------------------------------------------------
  159. * Plugin Options */
  160. /*!
  161. * @defgroup PluginOptions Plugin Options
  162. *
  163. * Various plugin options.
  164. * @see CarlaPlugin::getOptionsAvailable(), CarlaPlugin::getOptionsEnabled(), carla_get_plugin_info() and carla_set_option()
  165. * @{
  166. */
  167. /*!
  168. * Use constant/fixed-size audio buffers.
  169. */
  170. static const uint PLUGIN_OPTION_FIXED_BUFFERS = 0x001;
  171. /*!
  172. * Force mono plugin as stereo.
  173. */
  174. static const uint PLUGIN_OPTION_FORCE_STEREO = 0x002;
  175. /*!
  176. * Map MIDI programs to plugin programs.
  177. */
  178. static const uint PLUGIN_OPTION_MAP_PROGRAM_CHANGES = 0x004;
  179. /*!
  180. * Use chunks to save and restore data instead of parameter values.
  181. */
  182. static const uint PLUGIN_OPTION_USE_CHUNKS = 0x008;
  183. /*!
  184. * Send MIDI control change events.
  185. */
  186. static const uint PLUGIN_OPTION_SEND_CONTROL_CHANGES = 0x010;
  187. /*!
  188. * Send MIDI channel pressure events.
  189. */
  190. static const uint PLUGIN_OPTION_SEND_CHANNEL_PRESSURE = 0x020;
  191. /*!
  192. * Send MIDI note after-touch events.
  193. */
  194. static const uint PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH = 0x040;
  195. /*!
  196. * Send MIDI pitch-bend events.
  197. */
  198. static const uint PLUGIN_OPTION_SEND_PITCHBEND = 0x080;
  199. /*!
  200. * Send MIDI all-sounds/notes-off events, single note-offs otherwise.
  201. */
  202. static const uint PLUGIN_OPTION_SEND_ALL_SOUND_OFF = 0x100;
  203. /*!
  204. * Send MIDI bank/program changes.
  205. * @note: This option conflicts with PLUGIN_OPTION_MAP_PROGRAM_CHANGES and cannot be used at the same time.
  206. */
  207. static const uint PLUGIN_OPTION_SEND_PROGRAM_CHANGES = 0x200;
  208. /** @} */
  209. /* ------------------------------------------------------------------------------------------------------------
  210. * Parameter Hints */
  211. /*!
  212. * @defgroup ParameterHints Parameter Hints
  213. *
  214. * Various parameter hints.
  215. * @see CarlaPlugin::getParameterData() and carla_get_parameter_data()
  216. * @{
  217. */
  218. /*!
  219. * Parameter value is boolean.
  220. * It's always at either minimum or maximum value.
  221. */
  222. static const uint PARAMETER_IS_BOOLEAN = 0x001;
  223. /*!
  224. * Parameter value is integer.
  225. */
  226. static const uint PARAMETER_IS_INTEGER = 0x002;
  227. /*!
  228. * Parameter value is logarithmic.
  229. */
  230. static const uint PARAMETER_IS_LOGARITHMIC = 0x004;
  231. /*!
  232. * Parameter is enabled.
  233. * It can be viewed, changed and stored.
  234. */
  235. static const uint PARAMETER_IS_ENABLED = 0x010;
  236. /*!
  237. * Parameter is automable (real-time safe).
  238. */
  239. static const uint PARAMETER_IS_AUTOMABLE = 0x020;
  240. /*!
  241. * Parameter is read-only.
  242. * It cannot be changed.
  243. */
  244. static const uint PARAMETER_IS_READ_ONLY = 0x040;
  245. /*!
  246. * Parameter needs sample rate to work.
  247. * Value and ranges are multiplied by sample rate on usage and divided by sample rate on save.
  248. */
  249. static const uint PARAMETER_USES_SAMPLERATE = 0x100;
  250. /*!
  251. * Parameter uses scale points to define internal values in a meaningful way.
  252. */
  253. static const uint PARAMETER_USES_SCALEPOINTS = 0x200;
  254. /*!
  255. * Parameter uses custom text for displaying its value.
  256. * @see CarlaPlugin::getParameterText() and carla_get_parameter_text()
  257. */
  258. static const uint PARAMETER_USES_CUSTOM_TEXT = 0x400;
  259. /** @} */
  260. /* ------------------------------------------------------------------------------------------------------------
  261. * Patchbay Port Hints */
  262. /*!
  263. * @defgroup PatchbayPortHints Patchbay Port Hints
  264. *
  265. * Various patchbay port hints.
  266. * @{
  267. */
  268. /*!
  269. * Patchbay port is input.
  270. * When this hint is not set, port is assumed to be output.
  271. */
  272. static const uint PATCHBAY_PORT_IS_INPUT = 0x01;
  273. /*!
  274. * Patchbay port is of Audio type.
  275. */
  276. static const uint PATCHBAY_PORT_TYPE_AUDIO = 0x02;
  277. /*!
  278. * Patchbay port is of CV type (Control Voltage).
  279. */
  280. static const uint PATCHBAY_PORT_TYPE_CV = 0x04;
  281. /*!
  282. * Patchbay port is of MIDI type.
  283. */
  284. static const uint PATCHBAY_PORT_TYPE_MIDI = 0x08;
  285. /*!
  286. * Patchbay port is of OSC type.
  287. */
  288. static const uint PATCHBAY_PORT_TYPE_OSC = 0x10;
  289. /** @} */
  290. /* ------------------------------------------------------------------------------------------------------------
  291. * Custom Data Types */
  292. /*!
  293. * @defgroup CustomDataTypes Custom Data Types
  294. *
  295. * These types define how the value in the CustomData struct is stored.
  296. * @see CustomData::type
  297. * @{
  298. */
  299. /*!
  300. * Boolean string type URI.
  301. * Only "true" and "false" are valid values.
  302. */
  303. static const char* const CUSTOM_DATA_TYPE_BOOLEAN = "http://kxstudio.sf.net/ns/carla/boolean";
  304. /*!
  305. * Chunk type URI.
  306. */
  307. static const char* const CUSTOM_DATA_TYPE_CHUNK = "http://kxstudio.sf.net/ns/carla/chunk";
  308. /*!
  309. * Property type URI.
  310. */
  311. static const char* const CUSTOM_DATA_TYPE_PROPERTY = "http://kxstudio.sf.net/ns/carla/property";
  312. /*!
  313. * String type URI.
  314. */
  315. static const char* const CUSTOM_DATA_TYPE_STRING = "http://kxstudio.sf.net/ns/carla/string";
  316. /** @} */
  317. /* ------------------------------------------------------------------------------------------------------------
  318. * Custom Data Keys */
  319. /*!
  320. * @defgroup CustomDataKeys Custom Data Keys
  321. *
  322. * Pre-defined keys used internally in Carla.
  323. * @see CustomData::key
  324. * @{
  325. */
  326. /*!
  327. * UI position key.
  328. */
  329. static const char* const CUSTOM_DATA_KEY_UI_POSITION = "CarlaUiPosition";
  330. /*!
  331. * UI size key.
  332. */
  333. static const char* const CUSTOM_DATA_KEY_UI_SIZE = "CarlaUiSize";
  334. /*!
  335. * UI visible key.
  336. */
  337. static const char* const CUSTOM_DATA_KEY_UI_VISIBLE = "CarlaUiVisible";
  338. /** @} */
  339. /* ------------------------------------------------------------------------------------------------------------
  340. * Binary Type */
  341. /*!
  342. * The binary type of a plugin.
  343. */
  344. typedef enum {
  345. /*!
  346. * Null binary type.
  347. */
  348. BINARY_NONE = 0,
  349. /*!
  350. * POSIX 32bit binary.
  351. */
  352. BINARY_POSIX32 = 1,
  353. /*!
  354. * POSIX 64bit binary.
  355. */
  356. BINARY_POSIX64 = 2,
  357. /*!
  358. * Windows 32bit binary.
  359. */
  360. BINARY_WIN32 = 3,
  361. /*!
  362. * Windows 64bit binary.
  363. */
  364. BINARY_WIN64 = 4,
  365. /*!
  366. * Other binary type.
  367. */
  368. BINARY_OTHER = 5
  369. } BinaryType;
  370. /* ------------------------------------------------------------------------------------------------------------
  371. * Plugin Type */
  372. /*!
  373. * Plugin type.
  374. * Some files are handled as if they were plugins.
  375. */
  376. typedef enum {
  377. /*!
  378. * Null plugin type.
  379. */
  380. PLUGIN_NONE = 0,
  381. /*!
  382. * Internal plugin.
  383. */
  384. PLUGIN_INTERNAL = 1,
  385. /*!
  386. * LADSPA plugin.
  387. */
  388. PLUGIN_LADSPA = 2,
  389. /*!
  390. * DSSI plugin.
  391. */
  392. PLUGIN_DSSI = 3,
  393. /*!
  394. * LV2 plugin.
  395. */
  396. PLUGIN_LV2 = 4,
  397. /*!
  398. * VST2 plugin.
  399. */
  400. PLUGIN_VST2 = 5,
  401. /*!
  402. * VST3 plugin.
  403. * @note Windows and MacOS only
  404. */
  405. PLUGIN_VST3 = 6,
  406. /*!
  407. * AU plugin.
  408. * @note MacOS only
  409. */
  410. PLUGIN_AU = 7,
  411. /*!
  412. * SF2 file (SoundFont).
  413. */
  414. PLUGIN_SF2 = 8,
  415. /*!
  416. * SFZ file.
  417. */
  418. PLUGIN_SFZ = 9,
  419. /*!
  420. * JACK application.
  421. */
  422. PLUGIN_JACK = 10
  423. } PluginType;
  424. /* ------------------------------------------------------------------------------------------------------------
  425. * Plugin Category */
  426. /*!
  427. * Plugin category, which describes the functionality of a plugin.
  428. */
  429. typedef enum {
  430. /*!
  431. * Null plugin category.
  432. */
  433. PLUGIN_CATEGORY_NONE = 0,
  434. /*!
  435. * A synthesizer or generator.
  436. */
  437. PLUGIN_CATEGORY_SYNTH = 1,
  438. /*!
  439. * A delay or reverb.
  440. */
  441. PLUGIN_CATEGORY_DELAY = 2,
  442. /*!
  443. * An equalizer.
  444. */
  445. PLUGIN_CATEGORY_EQ = 3,
  446. /*!
  447. * A filter.
  448. */
  449. PLUGIN_CATEGORY_FILTER = 4,
  450. /*!
  451. * A distortion plugin.
  452. */
  453. PLUGIN_CATEGORY_DISTORTION = 5,
  454. /*!
  455. * A 'dynamic' plugin (amplifier, compressor, gate, etc).
  456. */
  457. PLUGIN_CATEGORY_DYNAMICS = 6,
  458. /*!
  459. * A 'modulator' plugin (chorus, flanger, phaser, etc).
  460. */
  461. PLUGIN_CATEGORY_MODULATOR = 7,
  462. /*!
  463. * An 'utility' plugin (analyzer, converter, mixer, etc).
  464. */
  465. PLUGIN_CATEGORY_UTILITY = 8,
  466. /*!
  467. * Miscellaneous plugin (used to check if the plugin has a category).
  468. */
  469. PLUGIN_CATEGORY_OTHER = 9
  470. } PluginCategory;
  471. /* ------------------------------------------------------------------------------------------------------------
  472. * Parameter Type */
  473. /*!
  474. * Plugin parameter type.
  475. */
  476. typedef enum {
  477. /*!
  478. * Null parameter type.
  479. */
  480. PARAMETER_UNKNOWN = 0,
  481. /*!
  482. * Input parameter.
  483. */
  484. PARAMETER_INPUT = 1,
  485. /*!
  486. * Ouput parameter.
  487. */
  488. PARAMETER_OUTPUT = 2
  489. } ParameterType;
  490. /* ------------------------------------------------------------------------------------------------------------
  491. * Internal Parameter Index */
  492. /*!
  493. * Special parameters used internally in Carla.
  494. * Plugins do not know about their existence.
  495. */
  496. typedef enum {
  497. /*!
  498. * Null parameter.
  499. */
  500. PARAMETER_NULL = -1,
  501. #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
  502. /*!
  503. * Active parameter, boolean type.
  504. * Default is 'false'.
  505. */
  506. PARAMETER_ACTIVE = -2,
  507. /*!
  508. * Dry/Wet parameter.
  509. * Range 0.0...1.0; default is 1.0.
  510. */
  511. PARAMETER_DRYWET = -3,
  512. /*!
  513. * Volume parameter.
  514. * Range 0.0...1.27; default is 1.0.
  515. */
  516. PARAMETER_VOLUME = -4,
  517. /*!
  518. * Stereo Balance-Left parameter.
  519. * Range -1.0...1.0; default is -1.0.
  520. */
  521. PARAMETER_BALANCE_LEFT = -5,
  522. /*!
  523. * Stereo Balance-Right parameter.
  524. * Range -1.0...1.0; default is 1.0.
  525. */
  526. PARAMETER_BALANCE_RIGHT = -6,
  527. /*!
  528. * Mono Panning parameter.
  529. * Range -1.0...1.0; default is 0.0.
  530. */
  531. PARAMETER_PANNING = -7,
  532. /*!
  533. * MIDI Control channel, integer type.
  534. * Range -1...15 (-1 = off).
  535. */
  536. PARAMETER_CTRL_CHANNEL = -8,
  537. #endif
  538. /*!
  539. * Max value, defined only for convenience.
  540. */
  541. PARAMETER_MAX = -9
  542. } InternalParameterIndex;
  543. /* ------------------------------------------------------------------------------------------------------------
  544. * Engine Callback Opcode */
  545. /*!
  546. * Engine callback opcodes.
  547. * Front-ends must never block indefinitely during a callback.
  548. * @see EngineCallbackFunc, CarlaEngine::setCallback() and carla_set_engine_callback()
  549. */
  550. typedef enum {
  551. /*!
  552. * Debug.
  553. * This opcode is undefined and used only for testing purposes.
  554. */
  555. ENGINE_CALLBACK_DEBUG = 0,
  556. /*!
  557. * A plugin has been added.
  558. * @a pluginId Plugin Id
  559. * @a valueStr Plugin name
  560. */
  561. ENGINE_CALLBACK_PLUGIN_ADDED = 1,
  562. /*!
  563. * A plugin has been removed.
  564. * @a pluginId Plugin Id
  565. */
  566. ENGINE_CALLBACK_PLUGIN_REMOVED = 2,
  567. /*!
  568. * A plugin has been renamed.
  569. * @a pluginId Plugin Id
  570. * @a valueStr New plugin name
  571. */
  572. ENGINE_CALLBACK_PLUGIN_RENAMED = 3,
  573. /*!
  574. * A plugin has become unavailable.
  575. * @a pluginId Plugin Id
  576. * @a valueStr Related error string
  577. */
  578. ENGINE_CALLBACK_PLUGIN_UNAVAILABLE = 4,
  579. /*!
  580. * A parameter value has changed.
  581. * @a pluginId Plugin Id
  582. * @a value1 Parameter index
  583. * @a valuef New parameter value
  584. */
  585. ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED = 5,
  586. /*!
  587. * A parameter default has changed.
  588. * @a pluginId Plugin Id
  589. * @a value1 Parameter index
  590. * @a valuef New default value
  591. */
  592. ENGINE_CALLBACK_PARAMETER_DEFAULT_CHANGED = 6,
  593. #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
  594. /*!
  595. * A parameter's MIDI CC has changed.
  596. * @a pluginId Plugin Id
  597. * @a value1 Parameter index
  598. * @a value2 New MIDI CC
  599. */
  600. ENGINE_CALLBACK_PARAMETER_MIDI_CC_CHANGED = 7,
  601. /*!
  602. * A parameter's MIDI channel has changed.
  603. * @a pluginId Plugin Id
  604. * @a value1 Parameter index
  605. * @a value2 New MIDI channel
  606. */
  607. ENGINE_CALLBACK_PARAMETER_MIDI_CHANNEL_CHANGED = 8,
  608. /*!
  609. * A plugin option has changed.
  610. * @a pluginId Plugin Id
  611. * @a value1 Option
  612. * @a value2 New on/off state (1 for on, 0 for off)
  613. * @see PluginOptions
  614. */
  615. ENGINE_CALLBACK_OPTION_CHANGED = 9,
  616. #endif
  617. /*!
  618. * The current program of a plugin has changed.
  619. * @a pluginId Plugin Id
  620. * @a value1 New program index
  621. */
  622. ENGINE_CALLBACK_PROGRAM_CHANGED = 10,
  623. /*!
  624. * The current MIDI program of a plugin has changed.
  625. * @a pluginId Plugin Id
  626. * @a value1 New MIDI program index
  627. */
  628. ENGINE_CALLBACK_MIDI_PROGRAM_CHANGED = 11,
  629. /*!
  630. * A plugin's custom UI state has changed.
  631. * @a pluginId Plugin Id
  632. * @a value1 New state, as follows:
  633. * 0: UI is now hidden
  634. * 1: UI is now visible
  635. * -1: UI has crashed and should not be shown again
  636. */
  637. ENGINE_CALLBACK_UI_STATE_CHANGED = 12,
  638. /*!
  639. * A note has been pressed.
  640. * @a pluginId Plugin Id
  641. * @a value1 Channel
  642. * @a value2 Note
  643. * @a value3 Velocity
  644. */
  645. ENGINE_CALLBACK_NOTE_ON = 13,
  646. /*!
  647. * A note has been released.
  648. * @a pluginId Plugin Id
  649. * @a value1 Channel
  650. * @a value2 Note
  651. */
  652. ENGINE_CALLBACK_NOTE_OFF = 14,
  653. /*!
  654. * A plugin needs update.
  655. * @a pluginId Plugin Id
  656. */
  657. ENGINE_CALLBACK_UPDATE = 15,
  658. /*!
  659. * A plugin's data/information has changed.
  660. * @a pluginId Plugin Id
  661. */
  662. ENGINE_CALLBACK_RELOAD_INFO = 16,
  663. /*!
  664. * A plugin's parameters have changed.
  665. * @a pluginId Plugin Id
  666. */
  667. ENGINE_CALLBACK_RELOAD_PARAMETERS = 17,
  668. /*!
  669. * A plugin's programs have changed.
  670. * @a pluginId Plugin Id
  671. */
  672. ENGINE_CALLBACK_RELOAD_PROGRAMS = 18,
  673. /*!
  674. * A plugin state has changed.
  675. * @a pluginId Plugin Id
  676. */
  677. ENGINE_CALLBACK_RELOAD_ALL = 19,
  678. #ifndef BUILD_BRIDGE_ALTERNATIVE_ARCH
  679. /*!
  680. * A patchbay client has been added.
  681. * @a pluginId Client Id
  682. * @a value1 Client icon
  683. * @a value2 Plugin Id (-1 if not a plugin)
  684. * @a valueStr Client name
  685. * @see PatchbayIcon
  686. */
  687. ENGINE_CALLBACK_PATCHBAY_CLIENT_ADDED = 20,
  688. /*!
  689. * A patchbay client has been removed.
  690. * @a pluginId Client Id
  691. */
  692. ENGINE_CALLBACK_PATCHBAY_CLIENT_REMOVED = 21,
  693. /*!
  694. * A patchbay client has been renamed.
  695. * @a pluginId Client Id
  696. * @a valueStr New client name
  697. */
  698. ENGINE_CALLBACK_PATCHBAY_CLIENT_RENAMED = 22,
  699. /*!
  700. * A patchbay client data has changed.
  701. * @a pluginId Client Id
  702. * @a value1 New icon
  703. * @a value2 New plugin Id (-1 if not a plugin)
  704. * @see PatchbayIcon
  705. */
  706. ENGINE_CALLBACK_PATCHBAY_CLIENT_DATA_CHANGED = 23,
  707. /*!
  708. * A patchbay port has been added.
  709. * @a pluginId Client Id
  710. * @a value1 Port Id
  711. * @a value2 Port hints
  712. * @a valueStr Port name
  713. * @see PatchbayPortHints
  714. */
  715. ENGINE_CALLBACK_PATCHBAY_PORT_ADDED = 24,
  716. /*!
  717. * A patchbay port has been removed.
  718. * @a pluginId Client Id
  719. * @a value1 Port Id
  720. */
  721. ENGINE_CALLBACK_PATCHBAY_PORT_REMOVED = 25,
  722. /*!
  723. * A patchbay port has been renamed.
  724. * @a pluginId Client Id
  725. * @a value1 Port Id
  726. * @a valueStr New port name
  727. */
  728. ENGINE_CALLBACK_PATCHBAY_PORT_RENAMED = 26,
  729. /*!
  730. * A patchbay connection has been added.
  731. * @a pluginId Connection Id
  732. * @a valueStr Out group and port plus in group and port, in "og:op:ig:ip" syntax.
  733. */
  734. ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED = 27,
  735. /*!
  736. * A patchbay connection has been removed.
  737. * @a pluginId Connection Id
  738. */
  739. ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED = 28,
  740. #endif
  741. /*!
  742. * Engine started.
  743. * @a value1 Process mode
  744. * @a value2 Transport mode
  745. * @a value3 Buffer size
  746. * @a valuef Sample rate
  747. * @a valuestr Engine driver
  748. * @see EngineProcessMode
  749. * @see EngineTransportMode
  750. */
  751. ENGINE_CALLBACK_ENGINE_STARTED = 29,
  752. /*!
  753. * Engine stopped.
  754. */
  755. ENGINE_CALLBACK_ENGINE_STOPPED = 30,
  756. /*!
  757. * Engine process mode has changed.
  758. * @a value1 New process mode
  759. * @see EngineProcessMode
  760. */
  761. ENGINE_CALLBACK_PROCESS_MODE_CHANGED = 31,
  762. /*!
  763. * Engine transport mode has changed.
  764. * @a value1 New transport mode
  765. * @a valueStr New transport features enabled
  766. * @see EngineTransportMode
  767. */
  768. ENGINE_CALLBACK_TRANSPORT_MODE_CHANGED = 32,
  769. /*!
  770. * Engine buffer-size changed.
  771. * @a value1 New buffer size
  772. */
  773. ENGINE_CALLBACK_BUFFER_SIZE_CHANGED = 33,
  774. /*!
  775. * Engine sample-rate changed.
  776. * @a valuef New sample rate
  777. */
  778. ENGINE_CALLBACK_SAMPLE_RATE_CHANGED = 34,
  779. /*!
  780. * A cancelable action has been started or stopped.
  781. * @a pluginId Plugin Id the action relates to, -1 for none
  782. * @a value1 1 for action started, 0 for stopped
  783. * @a valueStr Action name
  784. */
  785. ENGINE_CALLBACK_CANCELABLE_ACTION = 35,
  786. /*!
  787. * Project has finished loading.
  788. */
  789. ENGINE_CALLBACK_PROJECT_LOAD_FINISHED = 36,
  790. /*!
  791. * NSM callback, to be handled by a frontend.
  792. * Frontend must call carla_nsm_ready() with opcode as parameter as a response
  793. * @a value1 NSM opcode
  794. * @a value2 Integer value
  795. * @a valueStr String value
  796. * @see NsmCallbackOpcode
  797. */
  798. ENGINE_CALLBACK_NSM = 37,
  799. /*!
  800. * Idle frontend.
  801. * This is used by the engine during long operations that might block the frontend,
  802. * giving it the possibility to idle while the operation is still in place.
  803. */
  804. ENGINE_CALLBACK_IDLE = 38,
  805. /*!
  806. * Show a message as information.
  807. * @a valueStr The message
  808. */
  809. ENGINE_CALLBACK_INFO = 39,
  810. /*!
  811. * Show a message as an error.
  812. * @a valueStr The message
  813. */
  814. ENGINE_CALLBACK_ERROR = 40,
  815. /*!
  816. * The engine has crashed or malfunctioned and will no longer work.
  817. */
  818. ENGINE_CALLBACK_QUIT = 41
  819. } EngineCallbackOpcode;
  820. /* ------------------------------------------------------------------------------------------------------------
  821. * NSM Callback Opcode */
  822. /*!
  823. * NSM callback opcodes.
  824. * @see ENGINE_CALLBACK_NSM
  825. */
  826. typedef enum {
  827. /*!
  828. * NSM is available and initialized.
  829. */
  830. NSM_CALLBACK_INIT = 0,
  831. /*!
  832. * Error from NSM side.
  833. * @a valueInt Error code
  834. * @a valueStr Error string
  835. */
  836. NSM_CALLBACK_ERROR = 1,
  837. /*!
  838. * Announce message.
  839. * @a valueInt SM Flags (WIP, to be defined)
  840. * @a valueStr SM Name
  841. */
  842. NSM_CALLBACK_ANNOUNCE = 2,
  843. /*!
  844. * Open message.
  845. * @a valueStr Project filename
  846. */
  847. NSM_CALLBACK_OPEN = 3,
  848. /*!
  849. * Save message.
  850. */
  851. NSM_CALLBACK_SAVE = 4,
  852. /*!
  853. * Session-is-loaded message.
  854. */
  855. NSM_CALLBACK_SESSION_IS_LOADED = 5,
  856. /*!
  857. * Show-optional-gui message.
  858. */
  859. NSM_CALLBACK_SHOW_OPTIONAL_GUI = 6,
  860. /*!
  861. * Hide-optional-gui message.
  862. */
  863. NSM_CALLBACK_HIDE_OPTIONAL_GUI = 7,
  864. } NsmCallbackOpcode;
  865. /* ------------------------------------------------------------------------------------------------------------
  866. * Engine Option */
  867. /*!
  868. * Engine options.
  869. * @see CarlaEngine::getOptions(), CarlaEngine::setOption() and carla_set_engine_option()
  870. */
  871. typedef enum {
  872. /*!
  873. * Debug.
  874. * This option is undefined and used only for testing purposes.
  875. */
  876. ENGINE_OPTION_DEBUG = 0,
  877. /*!
  878. * Set the engine processing mode.
  879. * Default is ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS on Linux and ENGINE_PROCESS_MODE_PATCHBAY for all other OSes.
  880. * @see EngineProcessMode
  881. */
  882. ENGINE_OPTION_PROCESS_MODE = 1,
  883. /*!
  884. * Set the engine transport mode.
  885. * Default is ENGINE_TRANSPORT_MODE_JACK on Linux and ENGINE_TRANSPORT_MODE_INTERNAL for all other OSes.
  886. * @see EngineTransportMode
  887. */
  888. ENGINE_OPTION_TRANSPORT_MODE = 2,
  889. /*!
  890. * Force mono plugins as stereo, by running 2 instances at the same time.
  891. * Default is false, but always true when process mode is ENGINE_PROCESS_MODE_CONTINUOUS_RACK.
  892. * @note Not supported by all plugins
  893. * @see PLUGIN_OPTION_FORCE_STEREO
  894. */
  895. ENGINE_OPTION_FORCE_STEREO = 3,
  896. /*!
  897. * Use plugin bridges whenever possible.
  898. * Default is no, EXPERIMENTAL.
  899. */
  900. ENGINE_OPTION_PREFER_PLUGIN_BRIDGES = 4,
  901. /*!
  902. * Use UI bridges whenever possible, otherwise UIs will be directly handled in the main backend thread.
  903. * Default is yes.
  904. */
  905. ENGINE_OPTION_PREFER_UI_BRIDGES = 5,
  906. /*!
  907. * Make custom plugin UIs always-on-top.
  908. * Default is yes.
  909. */
  910. ENGINE_OPTION_UIS_ALWAYS_ON_TOP = 6,
  911. /*!
  912. * Maximum number of parameters allowed.
  913. * Default is MAX_DEFAULT_PARAMETERS.
  914. */
  915. ENGINE_OPTION_MAX_PARAMETERS = 7,
  916. /*!
  917. * Timeout value for how much to wait for UI bridges to respond, in milliseconds.
  918. * Default is 4000 (4 seconds).
  919. */
  920. ENGINE_OPTION_UI_BRIDGES_TIMEOUT = 8,
  921. /*!
  922. * Audio buffer size.
  923. * Default is 512.
  924. */
  925. ENGINE_OPTION_AUDIO_BUFFER_SIZE = 9,
  926. /*!
  927. * Audio sample rate.
  928. * Default is 44100.
  929. */
  930. ENGINE_OPTION_AUDIO_SAMPLE_RATE = 10,
  931. /*!
  932. * Wherever to use 3 audio periods instead of the default 2.
  933. * Default is false.
  934. */
  935. ENGINE_OPTION_AUDIO_TRIPLE_BUFFER = 11,
  936. /*!
  937. * Audio device (within a driver).
  938. * Default unset.
  939. */
  940. ENGINE_OPTION_AUDIO_DEVICE = 12,
  941. /*!
  942. * Set path used for a specific plugin type.
  943. * Uses value as the plugin format, valueStr as actual path.
  944. * @see PluginType
  945. */
  946. ENGINE_OPTION_PLUGIN_PATH = 13,
  947. /*!
  948. * Set path to the binary files.
  949. * Default unset.
  950. * @note Must be set for plugin and UI bridges to work
  951. */
  952. ENGINE_OPTION_PATH_BINARIES = 14,
  953. /*!
  954. * Set path to the resource files.
  955. * Default unset.
  956. * @note Must be set for some internal plugins to work
  957. */
  958. ENGINE_OPTION_PATH_RESOURCES = 15,
  959. /*!
  960. * Prevent bad plugin and UI behaviour.
  961. * @note: Linux only
  962. */
  963. ENGINE_OPTION_PREVENT_BAD_BEHAVIOUR = 16,
  964. /*!
  965. * Set frontend winId, used to define as parent window for plugin UIs.
  966. */
  967. ENGINE_OPTION_FRONTEND_WIN_ID = 17,
  968. #if !defined(BUILD_BRIDGE_ALTERNATIVE_ARCH) && !defined(CARLA_OS_WIN)
  969. /*!
  970. * Set path to wine executable.
  971. */
  972. ENGINE_OPTION_WINE_EXECUTABLE = 18,
  973. /*!
  974. * Enable automatic wineprefix detection.
  975. */
  976. ENGINE_OPTION_WINE_AUTO_PREFIX = 19,
  977. /*!
  978. * Fallback wineprefix to use if automatic detection fails or is disabled, and WINEPREFIX is not set.
  979. */
  980. ENGINE_OPTION_WINE_FALLBACK_PREFIX = 20,
  981. /*!
  982. * Enable realtime priority for Wine application and server threads.
  983. */
  984. ENGINE_OPTION_WINE_RT_PRIO_ENABLED = 21,
  985. /*!
  986. * Base realtime priority for Wine threads.
  987. */
  988. ENGINE_OPTION_WINE_BASE_RT_PRIO = 22,
  989. /*!
  990. * Wine server realtime priority.
  991. */
  992. ENGINE_OPTION_WINE_SERVER_RT_PRIO = 23,
  993. #endif
  994. /*!
  995. * Capture console output into debug callbacks.
  996. */
  997. ENGINE_OPTION_DEBUG_CONSOLE_OUTPUT = 24
  998. } EngineOption;
  999. /* ------------------------------------------------------------------------------------------------------------
  1000. * Engine Process Mode */
  1001. /*!
  1002. * Engine process mode.
  1003. * @see ENGINE_OPTION_PROCESS_MODE
  1004. */
  1005. typedef enum {
  1006. /*!
  1007. * Single client mode.
  1008. * Inputs and outputs are added dynamically as needed by plugins.
  1009. */
  1010. ENGINE_PROCESS_MODE_SINGLE_CLIENT = 0,
  1011. /*!
  1012. * Multiple client mode.
  1013. * It has 1 master client + 1 client per plugin.
  1014. */
  1015. ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS = 1,
  1016. /*!
  1017. * Single client, 'rack' mode.
  1018. * Processes plugins in order of Id, with forced stereo always on.
  1019. */
  1020. ENGINE_PROCESS_MODE_CONTINUOUS_RACK = 2,
  1021. /*!
  1022. * Single client, 'patchbay' mode.
  1023. */
  1024. ENGINE_PROCESS_MODE_PATCHBAY = 3,
  1025. /*!
  1026. * Special mode, used in plugin-bridges only.
  1027. */
  1028. ENGINE_PROCESS_MODE_BRIDGE = 4
  1029. } EngineProcessMode;
  1030. /* ------------------------------------------------------------------------------------------------------------
  1031. * Engine Transport Mode */
  1032. /*!
  1033. * Engine transport mode.
  1034. * @see ENGINE_OPTION_TRANSPORT_MODE
  1035. */
  1036. typedef enum {
  1037. /*!
  1038. * No transport.
  1039. */
  1040. ENGINE_TRANSPORT_MODE_DISABLED = 0,
  1041. /*!
  1042. * Internal transport mode.
  1043. */
  1044. ENGINE_TRANSPORT_MODE_INTERNAL = 1,
  1045. /*!
  1046. * Transport from JACK.
  1047. * Only available if driver name is "JACK".
  1048. */
  1049. ENGINE_TRANSPORT_MODE_JACK = 2,
  1050. /*!
  1051. * Transport from host, used when Carla is a plugin.
  1052. */
  1053. ENGINE_TRANSPORT_MODE_PLUGIN = 3,
  1054. /*!
  1055. * Special mode, used in plugin-bridges only.
  1056. */
  1057. ENGINE_TRANSPORT_MODE_BRIDGE = 4
  1058. } EngineTransportMode;
  1059. /* ------------------------------------------------------------------------------------------------------------
  1060. * File Callback Opcode */
  1061. /*!
  1062. * File callback opcodes.
  1063. * Front-ends must always block-wait for user input.
  1064. * @see FileCallbackFunc, CarlaEngine::setFileCallback() and carla_set_file_callback()
  1065. */
  1066. typedef enum {
  1067. /*!
  1068. * Debug.
  1069. * This opcode is undefined and used only for testing purposes.
  1070. */
  1071. FILE_CALLBACK_DEBUG = 0,
  1072. /*!
  1073. * Open file or folder.
  1074. */
  1075. FILE_CALLBACK_OPEN = 1,
  1076. /*!
  1077. * Save file or folder.
  1078. */
  1079. FILE_CALLBACK_SAVE = 2
  1080. } FileCallbackOpcode;
  1081. /* ------------------------------------------------------------------------------------------------------------
  1082. * Patchbay Icon */
  1083. /*!
  1084. * The icon of a patchbay client/group.
  1085. */
  1086. enum PatchbayIcon {
  1087. /*!
  1088. * Generic application icon.
  1089. * Used for all non-plugin clients that don't have a specific icon.
  1090. */
  1091. PATCHBAY_ICON_APPLICATION = 0,
  1092. /*!
  1093. * Plugin icon.
  1094. * Used for all plugin clients that don't have a specific icon.
  1095. */
  1096. PATCHBAY_ICON_PLUGIN = 1,
  1097. /*!
  1098. * Hardware icon.
  1099. * Used for hardware (audio or MIDI) clients.
  1100. */
  1101. PATCHBAY_ICON_HARDWARE = 2,
  1102. /*!
  1103. * Carla icon.
  1104. * Used for the main app.
  1105. */
  1106. PATCHBAY_ICON_CARLA = 3,
  1107. /*!
  1108. * DISTRHO icon.
  1109. * Used for DISTRHO based plugins.
  1110. */
  1111. PATCHBAY_ICON_DISTRHO = 4,
  1112. /*!
  1113. * File icon.
  1114. * Used for file type plugins (like SF2 snd SFZ).
  1115. */
  1116. PATCHBAY_ICON_FILE = 5
  1117. };
  1118. /* ------------------------------------------------------------------------------------------------------------
  1119. * Carla Backend API (C stuff) */
  1120. /*!
  1121. * Engine callback function.
  1122. * Front-ends must never block indefinitely during a callback.
  1123. * @see EngineCallbackOpcode, CarlaEngine::setCallback() and carla_set_engine_callback()
  1124. */
  1125. typedef void (*EngineCallbackFunc)(void* ptr, EngineCallbackOpcode action, uint pluginId,
  1126. int value1, int value2, int value3,
  1127. float valuef, const char* valueStr);
  1128. /*!
  1129. * File callback function.
  1130. * @see FileCallbackOpcode
  1131. */
  1132. typedef const char* (*FileCallbackFunc)(void* ptr, FileCallbackOpcode action, bool isDir, const char* title, const char* filter);
  1133. /*!
  1134. * Parameter data.
  1135. */
  1136. typedef struct {
  1137. /*!
  1138. * This parameter type.
  1139. */
  1140. ParameterType type;
  1141. /*!
  1142. * This parameter hints.
  1143. * @see ParameterHints
  1144. */
  1145. uint hints;
  1146. /*!
  1147. * Index as seen by Carla.
  1148. */
  1149. int32_t index;
  1150. /*!
  1151. * Real index as seen by plugins.
  1152. */
  1153. int32_t rindex;
  1154. /*!
  1155. * Currently mapped MIDI CC.
  1156. * A value lower than 0 means invalid or unused.
  1157. * Maximum allowed value is 119 (0x77).
  1158. */
  1159. int16_t midiCC;
  1160. /*!
  1161. * Currently mapped MIDI channel.
  1162. * Counts from 0 to 15.
  1163. */
  1164. uint8_t midiChannel;
  1165. } ParameterData;
  1166. /*!
  1167. * Parameter ranges.
  1168. */
  1169. typedef struct _ParameterRanges {
  1170. /*!
  1171. * Default value.
  1172. */
  1173. float def;
  1174. /*!
  1175. * Minimum value.
  1176. */
  1177. float min;
  1178. /*!
  1179. * Maximum value.
  1180. */
  1181. float max;
  1182. /*!
  1183. * Regular, single step value.
  1184. */
  1185. float step;
  1186. /*!
  1187. * Small step value.
  1188. */
  1189. float stepSmall;
  1190. /*!
  1191. * Large step value.
  1192. */
  1193. float stepLarge;
  1194. #ifdef __cplusplus
  1195. /*!
  1196. * Fix the default value within range.
  1197. */
  1198. void fixDefault() noexcept
  1199. {
  1200. fixValue(def);
  1201. }
  1202. /*!
  1203. * Fix a value within range.
  1204. */
  1205. void fixValue(float& value) const noexcept
  1206. {
  1207. if (value < min)
  1208. value = min;
  1209. else if (value > max)
  1210. value = max;
  1211. }
  1212. /*!
  1213. * Get a fixed value within range.
  1214. */
  1215. const float& getFixedValue(const float& value) const noexcept
  1216. {
  1217. if (value <= min)
  1218. return min;
  1219. if (value >= max)
  1220. return max;
  1221. return value;
  1222. }
  1223. /*!
  1224. * Get a value normalized to 0.0<->1.0.
  1225. */
  1226. float getNormalizedValue(const float& value) const noexcept
  1227. {
  1228. const float normValue((value - min) / (max - min));
  1229. if (normValue <= 0.0f)
  1230. return 0.0f;
  1231. if (normValue >= 1.0f)
  1232. return 1.0f;
  1233. return normValue;
  1234. }
  1235. /*!
  1236. * Get a value normalized to 0.0<->1.0, fixed within range.
  1237. */
  1238. float getFixedAndNormalizedValue(const float& value) const noexcept
  1239. {
  1240. if (value <= min)
  1241. return 0.0f;
  1242. if (value >= max)
  1243. return 1.0f;
  1244. const float normValue((value - min) / (max - min));
  1245. if (normValue <= 0.0f)
  1246. return 0.0f;
  1247. if (normValue >= 1.0f)
  1248. return 1.0f;
  1249. return normValue;
  1250. }
  1251. /*!
  1252. * Get a proper value previously normalized to 0.0<->1.0.
  1253. */
  1254. float getUnnormalizedValue(const float& value) const noexcept
  1255. {
  1256. if (value <= 0.0f)
  1257. return min;
  1258. if (value >= 1.0f)
  1259. return max;
  1260. return value * (max - min) + min;
  1261. }
  1262. /*!
  1263. * Get a logarithmic value previously normalized to 0.0<->1.0.
  1264. */
  1265. float getUnnormalizedLogValue(const float& value) const noexcept
  1266. {
  1267. if (value <= 0.0f)
  1268. return min;
  1269. if (value >= 1.0f)
  1270. return max;
  1271. float rmin = min;
  1272. if (std::abs(min) < std::numeric_limits<float>::epsilon())
  1273. rmin = 0.00001f;
  1274. return rmin * std::pow(max/rmin, value);
  1275. }
  1276. #endif /* __cplusplus */
  1277. } ParameterRanges;
  1278. /*!
  1279. * MIDI Program data.
  1280. */
  1281. typedef struct {
  1282. /*!
  1283. * MIDI bank.
  1284. */
  1285. uint32_t bank;
  1286. /*!
  1287. * MIDI program.
  1288. */
  1289. uint32_t program;
  1290. /*!
  1291. * MIDI program name.
  1292. */
  1293. const char* name;
  1294. } MidiProgramData;
  1295. /*!
  1296. * Custom data, used for saving key:value 'dictionaries'.
  1297. */
  1298. typedef struct {
  1299. /*!
  1300. * Value type, in URI form.
  1301. * @see CustomDataTypes
  1302. */
  1303. const char* type;
  1304. /*!
  1305. * Key.
  1306. * @see CustomDataKeys
  1307. */
  1308. const char* key;
  1309. /*!
  1310. * Value.
  1311. */
  1312. const char* value;
  1313. #ifdef __cplusplus
  1314. /*!
  1315. * Check if valid.
  1316. */
  1317. bool isValid() const noexcept
  1318. {
  1319. if (type == nullptr || type[0] == '\0') return false;
  1320. if (key == nullptr || key [0] == '\0') return false;
  1321. if (value == nullptr) return false;
  1322. return true;
  1323. }
  1324. #endif /* __cplusplus */
  1325. } CustomData;
  1326. /*!
  1327. * Engine driver device information.
  1328. */
  1329. typedef struct {
  1330. /*!
  1331. * This driver device hints.
  1332. * @see EngineDriverHints
  1333. */
  1334. uint hints;
  1335. /*!
  1336. * Available buffer sizes.
  1337. * Terminated with 0.
  1338. */
  1339. const uint32_t* bufferSizes;
  1340. /*!
  1341. * Available sample rates.
  1342. * Terminated with 0.0.
  1343. */
  1344. const double* sampleRates;
  1345. } EngineDriverDeviceInfo;
  1346. /** @} */
  1347. #ifdef __cplusplus
  1348. /* Forward declarations of commonly used Carla classes */
  1349. class CarlaEngine;
  1350. class CarlaEngineClient;
  1351. class CarlaPlugin;
  1352. /* End namespace */
  1353. CARLA_BACKEND_END_NAMESPACE
  1354. #endif
  1355. #endif /* CARLA_BACKEND_H_INCLUDED */