summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/amp.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-05-17 23:28:13 +0000
committerCarl Hetherington <carl@carlh.net>2010-05-17 23:28:13 +0000
commitf35dc8b35da3dc11cbb1076193657f8335722041 (patch)
treec816fe23d59070e08821dc5e577b6e750af07bb1 /libs/ardour/ardour/amp.h
parent6d9c1201cc6c9adf866fb7769037c79decf2e5b0 (diff)
Remove muting behaviour from the Amp processor. Fix some small
bugs with delivery muting. The upshot being that muting now definitely happens in a channel's deliveries, and not really in the channel strip at all. When the channel is muted, those deliveries described by the MuteMaster settings are muted. Should fix #3141. git-svn-id: svn://localhost/ardour2/branches/3.0@7115 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/amp.h')
-rw-r--r--libs/ardour/ardour/amp.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/libs/ardour/ardour/amp.h b/libs/ardour/ardour/amp.h
index 4db2292653..c1f6172de1 100644
--- a/libs/ardour/ardour/amp.h
+++ b/libs/ardour/ardour/amp.h
@@ -28,14 +28,13 @@ namespace ARDOUR {
class BufferSet;
class IO;
-class MuteMaster;
/** Applies a declick operation to all audio inputs, passing the same number of
* audio outputs, and passing through any other types unchanged.
*/
class Amp : public Processor {
public:
- Amp(Session& s, boost::shared_ptr<MuteMaster> m);
+ Amp(Session& s);
std::string display_name() const;
@@ -101,7 +100,6 @@ private:
float _current_gain;
boost::shared_ptr<GainControl> _gain_control;
- boost::shared_ptr<MuteMaster> _mute_master;
};