#include <MonoAudioFileWriter.hxx>
Public Member Functions | |
MonoAudioFileWriter () | |
MonoAudioFileWriter (const ProcessingConfig &cfg) | |
virtual const char * | GetClassName () const |
Override it in every subclass and retur the name of that class. | |
virtual const ProcessingConfig & | GetConfig () const |
Configuration getter. | |
virtual bool | Do () |
Supervised mode execution method (using ports). | |
virtual bool | Do (const CLAM::Audio &data) |
virtual | ~MonoAudioFileWriter () |
Protected Member Functions | |
virtual bool | ConcreteConfigure (const ProcessingConfig &cfgObj) |
Configuration method interface. | |
virtual bool | ConcreteStart () |
Processing objects have to redefine this method when starting them implies some internal changes. | |
virtual bool | ConcreteStop () |
Processing objects have to redefine this method when stoping them implies some internal changes. | |
Protected Attributes | |
MonoAudioFileWriterConfig | mConfig |
AudioInPort | mInput |
AudioCodecs::Stream * | mOutStream |
AudioFileTarget | mFile |
Definition at line 34 of file MonoAudioFileWriter.hxx.
CLAM::MonoAudioFileWriter::MonoAudioFileWriter | ( | ) |
Definition at line 37 of file MonoAudioFileWriter.cxx.
CLAM::MonoAudioFileWriter::MonoAudioFileWriter | ( | const ProcessingConfig & | cfg | ) |
Definition at line 44 of file MonoAudioFileWriter.cxx.
CLAM::MonoAudioFileWriter::~MonoAudioFileWriter | ( | ) | [virtual] |
Definition at line 51 of file MonoAudioFileWriter.cxx.
bool CLAM::MonoAudioFileWriter::ConcreteConfigure | ( | const ProcessingConfig & | ) | [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 82 of file MonoAudioFileWriter.cxx.
References CLAM::Audio::GetSize(), mOutStream, and CLAM::AudioCodecs::Stream::WriteData().
bool CLAM::MonoAudioFileWriter::ConcreteStart | ( | void | ) | [protected, virtual] |
Processing objects have to redefine this method when starting them implies some internal changes.
ie: adquiring resources.
Reimplemented from CLAM::Processing.
Definition at line 131 of file MonoAudioFileWriter.cxx.
bool CLAM::MonoAudioFileWriter::ConcreteStop | ( | ) | [protected, virtual] |
Processing objects have to redefine this method when stoping them implies some internal changes.
ie: releasing resources.
Reimplemented from CLAM::Processing.
Definition at line 138 of file MonoAudioFileWriter.cxx.
References mOutStream, and CLAM::AudioCodecs::Stream::PrepareWriting().
bool CLAM::MonoAudioFileWriter::Do | ( | const CLAM::Audio & | data | ) | [virtual] |
Definition at line 76 of file MonoAudioFileWriter.cxx.
References CLAM::InPort< Token >::Consume(), Do(), CLAM::AudioInPort::GetAudio(), and mInput.
bool CLAM::MonoAudioFileWriter::Do | ( | ) | [virtual] |
Supervised mode execution method (using ports).
Implements CLAM::Processing.
Definition at line 69 of file MonoAudioFileWriter.cxx.
References mConfig.
Referenced by Do().
const char * CLAM::MonoAudioFileWriter::GetClassName | ( | ) | const [virtual] |
Override it in every subclass and retur the name of that class.
Implements CLAM::Processing.
Definition at line 59 of file MonoAudioFileWriter.cxx.
const ProcessingConfig & CLAM::MonoAudioFileWriter::GetConfig | ( | ) | const [virtual] |
Configuration getter.
Gets the configuration parameters used to create the object.
Reimplemented from CLAM::Processing.
Definition at line 64 of file MonoAudioFileWriter.cxx.
Definition at line 56 of file MonoAudioFileWriter.hxx.
Referenced by Do().
AudioFileTarget CLAM::MonoAudioFileWriter::mFile [protected] |
Definition at line 59 of file MonoAudioFileWriter.hxx.
AudioInPort CLAM::MonoAudioFileWriter::mInput [protected] |
Definition at line 57 of file MonoAudioFileWriter.hxx.
Referenced by Do().
AudioCodecs::Stream* CLAM::MonoAudioFileWriter::mOutStream [protected] |
Definition at line 58 of file MonoAudioFileWriter.hxx.
Referenced by ConcreteConfigure(), and ConcreteStop().