Switchboard SDK
|
Converts n stereo audio buses into a single audio bus with n*2 channels. More...
#include <StereoBusMergerNode.hpp>
Public Member Functions | |
StereoBusMergerNode () | |
Initializes a StereoBusMergerNode instance. | |
bool | setNumberOfBuses (const uint numberOfInputBuses, const uint numberOfOutputBuses) override |
Sets number of buses. | |
bool | setBusFormats (AudioBusFormatList &inputBusFormats, AudioBusFormatList &outputBusFormats) override |
Sets bus formats. | |
bool | process (AudioBusList &inBuses, AudioBusList &outBuses) override |
Processes audio data from the given input buses and produces the audio output to the given output buses. | |
Public Member Functions inherited from switchboard::AudioProcessorNode | |
virtual | ~AudioProcessorNode ()=default |
AudioProcessorNode virtual destructor. | |
Public Member Functions inherited from switchboard::AudioNode | |
AudioNode () | |
AudioNode constructor. | |
virtual | ~AudioNode ()=default |
AudioNode virtual destructor. | |
const std::string & | getType () const |
Gets the type of the audio node. | |
virtual const std::string | getDisplayName () const |
Gets the display name of the audio node. | |
virtual std::vector< std::unique_ptr< Parameter > > & | getParameters () |
Gets the parameters of the audio node. | |
virtual Parameter * | getParameter (const std::string &id) |
Gets the parameter with the given name. | |
Additional Inherited Members | |
Public Attributes inherited from switchboard::AudioNode | |
std::string | name |
The name of the audio node. | |
Protected Member Functions inherited from switchboard::AudioNode | |
void | initParameters (std::map< std::string, std::any > config) |
Initializes the node parameters from the given configuration values. | |
Protected Attributes inherited from switchboard::AudioNode | |
std::string | type |
std::vector< std::unique_ptr< Parameter > > | parameters |
Converts n stereo audio buses into a single audio bus with n*2 channels.
|
overridevirtual |
Processes audio data from the given input buses and produces the audio output to the given output buses.
Should be overridden by subclasses.
inBuses | The input buses that contain the audio data. |
outBuses | The output buses which should be filled with the processed audio data. |
Implements switchboard::AudioProcessorNode.
|
overridevirtual |
Sets bus formats.
Should be overridden by subclasses. Please note that setNumberOfBuses is guaranteed to be called before this method.
inputBusFormats | The input bus formats to set. |
outputBusFormats | The output bus formats to set. |
Implements switchboard::AudioProcessorNode.
|
overridevirtual |
Sets number of buses.
Should be overridden by subclasses
numberOfInputBuses | The number of input buses to set. |
numberOfOutputBuses | The number of output buses to set. |
Implements switchboard::AudioProcessorNode.