Files
lmms/plugins/ladspa_effect/caps/dsp/RMS.h
Tobias Doerffel e0df82056c CAPS: updated to version 0.4.3
Updated CAPS plugins to version 0.4.3 - changes:

  * basics.h cleanup / comments
  * minor Makefile cleanup
  * comment cosmetics
  * Eq and Eq2x2 per-band Q changed to 1.414 (= 1 octave)
  * Eq lowest band default value fixed to read 0
  * Niclas' fix for the bessel function implemented
  * uninitialised plugin states eliminated thanks to Damon
  * linker options for OSX added to the Makefile

Signed-off-by: Tobias Doerffel <tobias.doerffel@gmail.com>
2009-08-03 17:55:57 +02:00

78 lines
1.5 KiB
C++

/*
dsp/RMS.h
Copyright 2004 Tim Goetze <tim@quitte.de>
http://quitte.de/dsp/
root-mean-square accumulator.
*/
/*
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA or point your web browser to http://www.gnu.org.
*/
#ifndef _DSP_RMS_H_
#define _DSP_RMS_H_
namespace DSP {
class RMS
{
protected:
d_sample buffer[64];
int write;
public:
double sum;
RMS()
{
write = 0;
reset();
}
void reset()
{
sum = 0.;
memset (buffer, 0, sizeof (buffer));
}
/* caution: pass in the *squared* sample value */
void store (d_sample x)
{
sum -= buffer[write];
sum += (buffer[write] = x);
write = (write + 1) & 63;
}
d_sample process (d_sample x)
{
store (x);
return rms();
}
d_sample rms()
{
/* fabs it before sqrt, just in case ... */
return sqrt (fabs (sum) / 64);
}
};
} /* namespace DSP */
#endif /* _DSP_RMS_H_ */