123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- /*
- Clip.cc
-
- Copyright 2003-7 Tim Goetze <tim@quitte.de>
-
- http://quitte.de/dsp/
- simple oversampled hard clipper
- */
- /*
- 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.
- */
- #include "basics.h"
- #include "Clip.h"
- #include "Descriptor.h"
- void
- Clip::init()
- {
- gain = 1;
- threshold[0] = -.9;
- threshold[1] = +.9;
- /* going a bit lower than nominal with fc */
- double f = .5 * M_PI / OVERSAMPLE;
-
- /* construct the upsampler filter kernel */
- DSP::sinc (f, up.c, FIR_SIZE);
- DSP::kaiser<DSP::apply_window> (up.c, FIR_SIZE, 6.4);
- /* copy upsampler filter kernel for downsampler, make sum */
- double s = 0;
- for (int i = 0; i < up.n; ++i)
- down.c[i] = up.c[i],
- s += up.c[i];
-
- /* scale downsampler kernel for unity gain */
- s = 1 / s;
- for (int i = 0; i < down.n; ++i)
- down.c[i] *= s;
- /* scale upsampler kernel for unity gain */
- s *= OVERSAMPLE;
- for (int i = 0; i < up.n; ++i)
- up.c[i] *= s;
- }
- inline sample_t
- Clip::clip (sample_t a)
- {
- if (a < threshold[0])
- return threshold[0];
- if (a > threshold[1])
- return threshold[1];
- return a;
- }
- template <sample_func_t F>
- void
- Clip::one_cycle (int frames)
- {
- sample_t * s = ports[0];
- double g = getport (1);
- double gf;
- if (g == gain_db)
- gf = 1;
- else
- {
- gain_db = g;
- sample_t g = DSP::db2lin (gain_db);
- gf = pow (g / gain, 1 / (double) frames);
- }
- sample_t * d = ports[2];
- *ports[3] = OVERSAMPLE;
- for (int i = 0; i < frames; ++i)
- {
- register sample_t a = gain * s[i];
- a = down.process (clip (up.upsample (a)));
- for (int o = 1; o < OVERSAMPLE; ++o)
- down.store (clip (up.pad (o)));
- F (d, i, a, adding_gain);
- gain *= gf;
- }
- }
- /* //////////////////////////////////////////////////////////////////////// */
- PortInfo
- Clip::port_info [] =
- {
- {
- "in",
- INPUT | AUDIO,
- {BOUNDED, -1, 1}
- }, {
- "gain (dB)",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_1, -72, 72}
- }, {
- "out",
- OUTPUT | AUDIO,
- {0}
- }, {
- "latency",
- OUTPUT | CONTROL,
- {0}
- }
- };
- template <> void
- Descriptor<Clip>::setup()
- {
- UniqueID = 1771;
- Label = "Clip";
- Properties = HARD_RT;
- Name = CAPS "Clip - Hard clipper, 8x oversampled";
- Maker = "Tim Goetze <tim@quitte.de>";
- Copyright = "GPL, 2003-7";
- /* fill port info and vtable */
- autogen();
- }
|