summaryrefslogtreecommitdiff
path: root/libs/ardour/io.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-06-01 02:27:21 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-06-01 02:27:21 +0000
commit38ed75ff979e72e73a759c350cd8b1e64e2ed18c (patch)
treeb714920f5b4017499c0a949c85ef52b7a593e016 /libs/ardour/io.cc
parent0f2f4d8efc7f3e1144c6f51fd17c1ab309056c3e (diff)
merge denormal handling work from 2.0-ongoing
git-svn-id: svn://localhost/ardour2/trunk@1937 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/io.cc')
-rw-r--r--libs/ardour/io.cc12
1 files changed, 11 insertions, 1 deletions
diff --git a/libs/ardour/io.cc b/libs/ardour/io.cc
index 49649aac6a..d7ac2b7e74 100644
--- a/libs/ardour/io.cc
+++ b/libs/ardour/io.cc
@@ -2436,7 +2436,17 @@ IO::set_phase_invert (bool yn, void *src)
{
if (_phase_invert != yn) {
_phase_invert = yn;
+ // phase_invert_changed (src); /* EMIT SIGNAL */
}
- // phase_invert_changed (src); /* EMIT SIGNAL */
}
+void
+IO::set_denormal_protection (bool yn, void *src)
+{
+ if (_denormal_protection != yn) {
+ _denormal_protection = yn;
+ // denormal_protection_changed (src); /* EMIT SIGNAL */
+ }
+}
+
+