SMSDeesser.hxx
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef _SMSDeesser_
00024 #define _SMSDeesser_
00025
00026 #include "InPort.hxx"
00027 #include "OutPort.hxx"
00028 #include "InControl.hxx"
00029 #include "Frame.hxx"
00030 #include "Spectrum.hxx"
00031 #include "SegmentTransformationConfig.hxx"
00032 #include "FrameTransformation.hxx"
00033 #include "FrameTransformationConfig.hxx"
00034
00035 #include "Deesser.hxx"
00036
00037 namespace CLAM{
00038
00039
00040 class SMSDeesser: public FrameTransformation
00041 {
00042
00043 const char *GetClassName() const {return "SMSDeesser";}
00044
00045 InPort<Spectrum> mIn;
00046 OutPort<Spectrum> mOut;
00047
00048 FloatInControl mLowCutoffFreqCtl;
00049 FloatInControl mHighCutoffFreqCtl;
00050 FloatInControl mThresholdCtl;
00051 public:
00052
00053 SMSDeesser()
00054 :
00055 mIn("In Spectrum", this),
00056 mOut("Out Spectrum", this),
00057 mLowCutoffFreqCtl("LowCutoff", this),
00058 mHighCutoffFreqCtl("HighCutoff", this),
00059 mThresholdCtl("Threshold", this)
00060 {
00061 Configure( SegmentTransformationConfig() );
00062 }
00063
00064 ~SMSDeesser() {}
00065
00066 bool Do(const Frame& in, Frame& out)
00067 {
00068 return Do(in.GetResidualSpec(), out.GetResidualSpec());
00069 }
00070
00071 bool Do(const Spectrum& in, Spectrum& out);
00072
00073 bool Do()
00074 {
00075 bool result = Do(mIn.GetData(), mOut.GetData());
00076 mIn.Consume();
00077 mOut.Produce();
00078 return result;
00079 }
00080 private:
00081 Deesser mDeesser;
00082
00083 };
00084 }
00085
00086 #endif // _SMSDeesser_
00087