disable LTC,MTC speed deadzone for now.
authorRobin Gareus <robin@gareus.org>
Wed, 17 Oct 2012 17:11:32 +0000 (17:11 +0000)
committerRobin Gareus <robin@gareus.org>
Wed, 17 Oct 2012 17:11:32 +0000 (17:11 +0000)
wrong threshold causes jumps.

git-svn-id: svn://localhost/ardour2/branches/3.0@13302 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/ltc_slave.cc
libs/ardour/mtc_slave.cc

index 128cc754268b793713bbf27512ab60d33edb0fcb..d5420386588ab9d108a08475925cdb8942953b78 100644 (file)
@@ -512,7 +512,7 @@ LTC_Slave::speed_and_position (double& speed, framepos_t& pos)
                return true;
        }
 
-#if 1
+#if 0
        /* provide a 1% deadzone to lock the speed */
        if (fabs(speed - 1.0) <= 0.01)
                speed = 1.0;
index 99cb66d6305161d1177168821de35186bd1708b4..8baddc3efc2557e4736a09b105b78d668eef146b 100644 (file)
@@ -628,7 +628,7 @@ MTC_Slave::speed_and_position (double& speed, framepos_t& pos)
                queue_reset (false);
        }
 
-#if 1
+#if 0
        /* provide a 1% deadzone to lock the speed */
        if (fabs(speed - 1.0) <= 0.01)
                speed = 1.0;