| 33 | { |
| 34 | |
| 35 | class Decrease: public YAAFE::StateLessOneInOneOutComponent<Decrease> |
| 36 | { |
| 37 | public: |
| 38 | Decrease(); |
| 39 | virtual ~Decrease(); |
| 40 | |
| 41 | virtual const std::string getIdentifier() const { return DECREASE_ID;}; |
| 42 | |
| 43 | StreamInfo init(const ParameterMap& params, const StreamInfo& in); |
| 44 | void processToken(double* inData, const int inSize, double* out, const int outSize); |
| 45 | }; |
| 46 | |
| 47 | } |
| 48 |
nothing calls this directly
no outgoing calls
no test coverage detected