Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Scroll Documents: Update page title prefix

Overview

Solo and mute control module

Discussion

Solo and Mute Control module. When the second argument NUMPINS is 1, then the solo and mute control is applied to each individual channel. Otherwise the solo and mute control is applied to each individual input pin as a whole. The array .isMuted is used for mute control and the array .isSolo is for solo control. When both are selected, mute has higher priority over solo. In all cases, the array length is updated by the prebuild function.

...

By default, the inspector for the module has the control checkboxes organized in a vertical stack. By setting the optional third argument TRANSPOSE = 1 turns the control into a horizontal stack.

Type Definition

Code Block
typedef struct _ModuleSoloMute
{
    ModuleInstanceDescriptor instance;            // Common Audio Weaver module instance structure
    INT32 numControls;                            // Number of individual mute controls
    FLOAT32 smoothingTime;                        // Time constant of the smoothing process
    FLOAT32 smoothingCoeff;                       // Smoothing coefficient.
    INT32* isSolo;                                // Boolean that controls pin solo. One per each pin.
    INT32* isMuted;                               // Boolean that controls pin muted or unmuted. One per each pin.
    FLOAT32* currentGain;                         // Instantaneous gain applied by the module. This is also the starting gain of the module.
    FLOAT32* gain;                                // Target gain.
} ModuleSoloMuteClass;

Variables

Properties

Name

Type

Usage

isHidden

Default value

Range

Units

numControls

int

const

0

2

Unrestricted

smoothingTime

float

parameter

0

10

0:1000

msec

smoothingCoeff

float

derived

1

0.002081

Unrestricted

isSolo

int*

parameter

0

[2 x 1]

0:1

isMuted

int*

parameter

0

[2 x 1]

0:1

currentGain

float*

state

1

[2 x 1]

0:1

linear

gain

float*

derived

1

[2 x 1]

0:1

linear

Pins

Input Pins

Name: in1

Description: audio input

...

Sample rate range: Unrestricted

Complex support: Real

Output Pins

Name: out1

Description: audio output

Data type: float

MATLAB Usage

File Name: solo_mute_module.m

...