Browse Source

Revert latest changes, do not work in the end

Signed-off-by: falkTX <falktx@falktx.com>
pull/421/head
falkTX 2 years ago
parent
commit
9a86c80834
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      distrho/DistrhoDetails.hpp

+ 4
- 4
distrho/DistrhoDetails.hpp View File

@@ -232,22 +232,22 @@ enum ParameterDesignation {

@see PortGroup
*/
enum PredefinedPortGroupsIds : uint32_t {
enum PredefinedPortGroupsIds {
/**
Null or unset port group.
*/
kPortGroupNone = UINT32_MAX - 1,
kPortGroupNone = (uint32_t)-1,

/**
A single channel audio group.
*/
kPortGroupMono = UINT32_MAX - 2,
kPortGroupMono = (uint32_t)-2,

/**
A 2-channel discrete stereo audio group,
where the 1st audio port is the left channel and the 2nd port is the right channel.
*/
kPortGroupStereo = UINT32_MAX - 3
kPortGroupStereo = (uint32_t)-3
};

/**


Loading…
Cancel
Save