Browse Source

Misc

tags/1.9.4
falkTX 11 years ago
parent
commit
60dc926d08
2 changed files with 18 additions and 18 deletions
  1. +13
    -13
      source/backend/CarlaBackend.hpp
  2. +5
    -5
      source/carla_backend.py

+ 13
- 13
source/backend/CarlaBackend.hpp View File

@@ -102,19 +102,6 @@ const unsigned int PARAMETER_USES_SCALEPOINTS = 0x40; //!< Parameter uses scalep
const unsigned int PARAMETER_USES_CUSTOM_TEXT = 0x80; //!< Parameter uses custom text for displaying its value.\see CarlaPlugin::getParameterText()
/**@}*/

/*!
* @defgroup PatchbayPortHints Patchbay Port Hints
*
* Various patchbay port hints.
* @{
*/
const unsigned int PATCHBAY_PORT_IS_INPUT = 0x01; //!< Patchbay port is input.
const unsigned int PATCHBAY_PORT_IS_OUTPUT = 0x02; //!< Patchbay port is output.
const unsigned int PATCHBAY_PORT_IS_AUDIO = 0x04; //!< Patchbay port is of Audio type.
const unsigned int PATCHBAY_PORT_IS_CV = 0x08; //!< Patchbay port is of CV type.
const unsigned int PATCHBAY_PORT_IS_MIDI = 0x10; //!< Patchbay port is of MIDI type.
/**@}*/

/*!
* @defgroup CustomDataTypes Custom Data types
*
@@ -128,6 +115,19 @@ const char* const CUSTOM_DATA_CHUNK = "http://kxstudio.sf.net/ns/carla/chunk";
const char* const CUSTOM_DATA_STRING = "http://kxstudio.sf.net/ns/carla/string"; //!< Carla String URI
/**@}*/

/*!
* @defgroup PatchbayPortHints Patchbay Port Hints
*
* Various patchbay port hints.
* @{
*/
const unsigned int PATCHBAY_PORT_IS_INPUT = 0x01; //!< Patchbay port is input.
const unsigned int PATCHBAY_PORT_IS_OUTPUT = 0x02; //!< Patchbay port is output.
const unsigned int PATCHBAY_PORT_IS_AUDIO = 0x04; //!< Patchbay port is of Audio type.
const unsigned int PATCHBAY_PORT_IS_CV = 0x08; //!< Patchbay port is of CV type.
const unsigned int PATCHBAY_PORT_IS_MIDI = 0x10; //!< Patchbay port is of MIDI type.
/**@}*/

/*!
* The binary type of a plugin.
*/


+ 5
- 5
source/carla_backend.py View File

@@ -125,6 +125,11 @@ PARAMETER_USES_SAMPLERATE = 0x20
PARAMETER_USES_SCALEPOINTS = 0x40
PARAMETER_USES_CUSTOM_TEXT = 0x80

# Custom Data types
CUSTOM_DATA_INVALID = None
CUSTOM_DATA_CHUNK = "http://kxstudio.sf.net/ns/carla/chunk"
CUSTOM_DATA_STRING = "http://kxstudio.sf.net/ns/carla/string"

# Patchbay Port Hints
PATCHBAY_PORT_IS_INPUT = 0x01
PATCHBAY_PORT_IS_OUTPUT = 0x02
@@ -132,11 +137,6 @@ PATCHBAY_PORT_IS_AUDIO = 0x04
PATCHBAY_PORT_IS_CV = 0x08
PATCHBAY_PORT_IS_MIDI = 0x10

# Custom Data types
CUSTOM_DATA_INVALID = None
CUSTOM_DATA_CHUNK = "http://kxstudio.sf.net/ns/carla/chunk"
CUSTOM_DATA_STRING = "http://kxstudio.sf.net/ns/carla/string"

# Binary Type
BINARY_NONE = 0
BINARY_POSIX32 = 1


Loading…
Cancel
Save