Time-domain audio gain. More...
#include <AudioAmplifier.hxx>
Public Types | |
typedef AudioAmplifierConfig | Config |
Public Member Functions | |
AudioAmplifier (const ProcessingConfig &config=Config()) | |
~AudioAmplifier () | |
bool | Do () |
Supervised mode execution method (using ports). | |
bool | Do (const Audio &in, Audio &out, float gain) |
Protected Member Functions | |
const ProcessingConfig & | GetConfig () const |
Configuration getter. | |
bool | ConcreteConfigure (const ProcessingConfig &config) |
Configuration method interface. |
Time-domain audio gain.
Very simple time-domain linear audio amplifier. For lower the volume choose values between 0 and 1. Values over 1 will amplify the audio signal. Gain=1 means no change.
Definition at line 55 of file AudioAmplifier.hxx.
Reimplemented from CLAM::Processing.
Definition at line 111 of file AudioAmplifier.hxx.
CLAM::AudioAmplifier::AudioAmplifier | ( | const ProcessingConfig & | config = Config() |
) | [inline] |
Definition at line 70 of file AudioAmplifier.hxx.
References CLAM::Processing::Configure().
CLAM::AudioAmplifier::~AudioAmplifier | ( | ) | [inline] |
Definition at line 76 of file AudioAmplifier.hxx.
bool CLAM::AudioAmplifier::ConcreteConfigure | ( | const ProcessingConfig & | ) | [inline, protected, virtual] |
Configuration method interface.
The Processing base class forces all the concrete classes derived from it to implement this method, which must actually perform the specific configuration tasks.
Note that the user can not call this method directly. He will use Configure instead. The argument is expected to be an object of the necesary concrete configuration class.
Reference | to the configuration object. |
true if the processing object is left in a consistent state, and can be executed.
This | method must throw a bad_cast exception if the argument is not an object of the expected configuration class. |
Reimplemented from CLAM::Processing.
Definition at line 116 of file AudioAmplifier.hxx.
References CLAM::Processing::CopyAsConcreteConfig(), CLAM::InControl< ControlDataType >::DoControl(), CLAM::InControlBase::SetBounds(), and CLAM::InControlBase::SetDefaultValue().
Definition at line 95 of file AudioAmplifier.hxx.
References CLAM::Audio::GetSize().
bool CLAM::AudioAmplifier::Do | ( | ) | [inline, virtual] |
Supervised mode execution method (using ports).
Implements CLAM::Processing.
Definition at line 81 of file AudioAmplifier.hxx.
References CLAM::InControl< ControlDataType >::GetLastValue().
const ProcessingConfig& CLAM::AudioAmplifier::GetConfig | ( | ) | const [inline, protected, virtual] |
Configuration getter.
Gets the configuration parameters used to create the object.
Reimplemented from CLAM::Processing.
Definition at line 115 of file AudioAmplifier.hxx.