4 * ***** BEGIN GPL LICENSE BLOCK *****
6 * Copyright 2009-2011 Jörg Hermann Müller
8 * This file is part of AudaSpace.
10 * Audaspace is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * AudaSpace is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with Audaspace; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 * ***** END GPL LICENSE BLOCK *****
27 /** \file audaspace/FX/AUD_SquareFactory.cpp
32 #include "AUD_SquareFactory.h"
33 #include "AUD_CallbackIIRFilterReader.h"
35 sample_t squareFilter(AUD_CallbackIIRFilterReader* reader, float* threshold)
37 float in = reader->x(0);
40 else if(in <= -*threshold)
46 void endSquareFilter(float* threshold)
51 AUD_SquareFactory::AUD_SquareFactory(AUD_IFactory* factory, float threshold) :
52 AUD_EffectFactory(factory),
53 m_threshold(threshold)
57 float AUD_SquareFactory::getThreshold() const
62 AUD_IReader* AUD_SquareFactory::createReader() const
64 return new AUD_CallbackIIRFilterReader(getReader(), 1, 1,
65 (doFilterIIR) squareFilter,
66 (endFilterIIR) endSquareFilter,
67 new float(m_threshold));