disable LTC,MTC speed deadzone for now.

wrong threshold causes jumps.

git-svn-id: svn://localhost/ardour2/branches/3.0@13302 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Robin Gareus
2012-10-17 17:11:32 +00:00
parent cf23bf29e7
commit fbc5571133
2 changed files with 2 additions and 2 deletions

View 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;

View 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;