123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- /*
- Preamp.cc
-
- Copyright 2003-7 Tim Goetze <tim@quitte.de>
-
- http://quitte.de/dsp/
- Loosely 12AX7-based tube preamp model with 8x oversampling.
- */
- /*
- 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 <stdio.h>
- #include "Amp.h"
- #include "Descriptor.h"
- void
- PreampIII::init()
- {
- this->AmpStub::init();
- DSP::RBJ::LoShelve (200 / fs, .2, -6, filter.a, filter.b);
- }
- template <sample_func_t F, int OVERSAMPLE>
- void
- PreampIII::one_cycle (int frames)
- {
- sample_t * s = ports[0];
- sample_t gain = getport(1);
- sample_t temp = getport(2) * tube.scale;
- sample_t * d = ports[3];
- *ports[4] = OVERSAMPLE;
- double g = current.g;
- current.g = max (gain < 1 ? gain : exp2 (gain - 1), .000001);
- /* correction for attenuated first transfer */
- current.g *= tube.scale / fabs (tube.transfer (temp));
- if (g == 0) g = current.g;
-
- /* recursive fade to prevent zipper noise from the 'gain' knob */
- double one_over_n = frames > 0 ? 1. / frames : 1;
- double gf = pow (current.g / g, one_over_n);
- for (int i = 0; i < frames; ++i)
- {
- register sample_t a = s[i] + normal;
- a = g * tube.transfer (a * temp);
- a = filter.process (a);
- a = down.process (tube.transfer_clip (up.upsample (a)));
- for (int o = 1; o < OVERSAMPLE; ++o)
- down.store (tube.transfer_clip (up.pad (o)));
- F (d, i, dc_blocker.process (a), adding_gain);
- g *= gf;
- }
- current.g = g;
- }
- /* //////////////////////////////////////////////////////////////////////// */
- PortInfo
- PreampIII::port_info [] =
- {
- {
- "in",
- INPUT | AUDIO,
- {BOUNDED, -1, 1}
- }, {
- "gain",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_1, 0, 10}
- }, {
- "temperature",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_LOW, 0.005, 1}
- }, {
- "out",
- OUTPUT | AUDIO,
- {0}
- }, {
- "latency",
- OUTPUT | CONTROL,
- {0}
- }
- };
- template <> void
- Descriptor<PreampIII>::setup()
- {
- UniqueID = 1776;
- Label = "PreampIII";
- Properties = HARD_RT;
- Name = CAPS "PreampIII - Tube preamp emulation";
- Maker = "Tim Goetze <tim@quitte.de>";
- Copyright = "GPL, 2002-7";
- /* fill port info and vtable */
- autogen();
- }
- /* //////////////////////////////////////////////////////////////////////// */
- void
- PreampIV::init()
- {
- this->AmpStub::init();
- tone.init (fs);
- }
- void
- PreampIV::activate()
- {
- this->PreampIII::activate();
- tone.activate (ports + 3);
- }
- template <sample_func_t F, int OVERSAMPLE>
- void
- PreampIV::one_cycle (int frames)
- {
- double one_over_n = frames > 0 ? 1. / frames : 1;
- sample_t * s = ports[0];
- sample_t gain = getport(1);
- sample_t temp = getport(2) * tube.scale;
- tone.start_cycle (ports + 3, one_over_n);
- sample_t * d = ports[7];
- *ports[8] = OVERSAMPLE;
- double g = current.g;
- current.g = max (gain < 1 ? gain : exp2 (gain - 1), .000001);
- current.g *= tube.scale / fabs (tube.transfer (temp));
- if (g == 0) g = current.g;
-
- /* recursive fade to prevent zipper noise from the 'gain' knob */
- double gf = pow (current.g / g, one_over_n);
- for (int i = 0; i < frames; ++i)
- {
- register sample_t a = tone.process (s[i] + normal);
- a = g * tube.transfer (a * temp);
- a = down.process (tube.transfer_clip (up.upsample (a)));
- for (int o = 1; o < OVERSAMPLE; ++o)
- down.store (tube.transfer_clip (up.pad (o)));
- F (d, i, dc_blocker.process (a), adding_gain);
- g *= gf;
- }
- current.g = g;
- }
- /* //////////////////////////////////////////////////////////////////////// */
- PortInfo
- PreampIV::port_info [] =
- {
- {
- "in",
- INPUT | AUDIO,
- {BOUNDED, -1, 1}
- }, {
- "gain",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_1, 0, 10}
- }, {
- "temperature",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_MID, 0.005, 1}
- }, {
- "bass",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_0, -20, 20}
- }, {
- "mid",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_0, -20, 20}
- }, {
- "treble",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_0, -20, 20}
- }, {
- "hi",
- INPUT | CONTROL,
- {BOUNDED | DEFAULT_0, -20, 20}
- }, {
- "out",
- OUTPUT | AUDIO,
- {0}
- }, {
- "latency",
- OUTPUT | CONTROL,
- {0}
- }
- };
- template <> void
- Descriptor<PreampIV>::setup()
- {
- UniqueID = 1777;
- Label = "PreampIV";
- Properties = HARD_RT;
- Name = CAPS "PreampIV - Tube preamp emulation + tone controls";
- Maker = "Tim Goetze <tim@quitte.de>";
- Copyright = "GPL, 2002-7";
- /* fill port info and vtable */
- autogen();
- }
|