summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/amp.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-04 22:32:28 +0000
committerDavid Robillard <d@drobilla.net>2007-07-04 22:32:28 +0000
commita1052b0eca7bdc8ec1e3ac2996cd16bb48e2a6d2 (patch)
tree373c7861688e3ee2ec0d9ea04c387b46db85b995 /libs/ardour/ardour/amp.h
parent2177f008411821e7bce9ca3c306ec64c70b1c58e (diff)
Changed Processor interface to support out-of-place processors, for Panner.
git-svn-id: svn://localhost/ardour2/trunk@2106 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/amp.h')
-rw-r--r--libs/ardour/ardour/amp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/ardour/amp.h b/libs/ardour/ardour/amp.h
index e5a4c189e9..cdbcacbd91 100644
--- a/libs/ardour/ardour/amp.h
+++ b/libs/ardour/ardour/amp.h
@@ -29,11 +29,11 @@ class BufferSet;
/** Applies a declick operation to all audio inputs, passing the same number of
* audio outputs, and passing through any other types unchanged.
*
- * FIXME: make this an insert.
+ * FIXME: make this a Processor.
*/
class Amp {
public:
- static void run (BufferSet& bufs, nframes_t nframes, gain_t initial, gain_t target, bool invert_polarity);
+ static void run_in_place (BufferSet& bufs, nframes_t nframes, gain_t initial, gain_t target, bool invert_polarity);
static void apply_simple_gain(BufferSet& bufs, nframes_t nframes, gain_t target);
};