summaryrefslogtreecommitdiff
path: root/libs/ardour/amp.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-07-25 19:26:14 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-07-25 19:26:14 +0000
commit6fa58df7918b3a9fea715bf6c917c144af540f3c (patch)
tree13dfc5be81482dc73b2981f2d170a58efa2a30ca /libs/ardour/amp.cc
parentfce685b2e7cc57f1310d9d83bba9f4a3c98b9afe (diff)
do not apply global transport declick to MIDI
git-svn-id: svn://localhost/ardour2/branches/3.0@7491 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/amp.cc')
-rw-r--r--libs/ardour/amp.cc54
1 files changed, 53 insertions, 1 deletions
diff --git a/libs/ardour/amp.cc b/libs/ardour/amp.cc
index a739b59088..36d0c6bf33 100644
--- a/libs/ardour/amp.cc
+++ b/libs/ardour/amp.cc
@@ -160,7 +160,6 @@ Amp::apply_gain (BufferSet& bufs, nframes_t nframes, gain_t initial, gain_t targ
for (BufferSet::midi_iterator i = bufs.midi_begin(); i != bufs.midi_end(); ++i) {
-
MidiBuffer& mb (*i);
for (MidiBuffer::iterator m = mb.begin(); m != mb.end(); ++m) {
@@ -199,6 +198,59 @@ Amp::apply_gain (BufferSet& bufs, nframes_t nframes, gain_t initial, gain_t targ
}
void
+Amp::declick (BufferSet& bufs, nframes_t nframes, int dir)
+{
+ /* Almost exactly like ::apply_gain() but skips MIDI buffers and has fixed initial+target
+ values.
+ */
+
+ if (nframes == 0 || bufs.count().n_total() == 0) {
+ return;
+ }
+
+ const nframes_t declick = std::min ((nframes_t)128, nframes);
+ gain_t delta, initial, target;
+ double fractional_shift = -1.0/declick;
+ double fractional_pos;
+
+ if (dir < 0) {
+ /* fade out: remove more and more of delta from initial */
+ delta = -1.0;
+ initial = 1.0;
+ target = 0.0;
+ } else {
+ /* fade in: add more and more of delta from initial */
+ delta = 1.0;
+ initial = 0.0;
+ target = 1.0;
+ }
+
+ /* Audio Gain */
+
+ for (BufferSet::audio_iterator i = bufs.audio_begin(); i != bufs.audio_end(); ++i) {
+ Sample* const buffer = i->data();
+
+ fractional_pos = 1.0;
+
+ for (nframes_t nx = 0; nx < declick; ++nx) {
+ buffer[nx] *= (initial + (delta * (0.5 + 0.5 * cos (M_PI * fractional_pos))));
+ fractional_pos += fractional_shift;
+ }
+
+ /* now ensure the rest of the buffer has the target value applied, if necessary. */
+
+ if (declick != nframes) {
+
+ if (target == 0.0) {
+ memset (&buffer[declick], 0, sizeof (Sample) * (nframes - declick));
+ } else if (target != 1.0) {
+ apply_gain_to_buffer (&buffer[declick], nframes - declick, target);
+ }
+ }
+ }
+}
+
+void
Amp::apply_gain (AudioBuffer& buf, nframes_t nframes, gain_t initial, gain_t target)
{
/** Apply a (potentially) declicked gain to the contents of @a buf