summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/route.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-05-31 21:44:18 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-05-31 21:44:18 +0000
commit2291d59bc813597c95f2f00b2e8ae697f1f284f9 (patch)
tree6699041315f4bfa0cb605156fde098c143ad646a /libs/ardour/ardour/route.h
parentc967b91ddf1bcd03ef44d62022b95257cbd94f60 (diff)
add new denormal handling capabilities (95% finished)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@1935 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/route.h')
-rw-r--r--libs/ardour/ardour/route.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h
index 9bdd2cbca5..8f3cae0db1 100644
--- a/libs/ardour/ardour/route.h
+++ b/libs/ardour/ardour/route.h
@@ -127,6 +127,10 @@ class Route : public IO
void set_phase_invert (bool yn, void *src);
bool phase_invert() const { return _phase_invert; }
+
+ void set_denormal_protection (bool yn, void *src);
+ bool denormal_protection() const { return _denormal_protection; }
+
void set_edit_group (RouteGroup *, void *);
void drop_edit_group (void *);
@@ -258,6 +262,7 @@ class Route : public IO
bool _soloed : 1;
bool _solo_safe : 1;
bool _phase_invert : 1;
+ bool _denormal_protection : 1;
bool _recordable : 1;
bool _active : 1;
bool _mute_affects_pre_fader : 1;