mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Remove unused API
These are longer be used since Seuqnce has a "force_discrete" boolen that needs to be taken into account in addition to user-configurable ControlList _interpolation mode.
This commit is contained in:
parent
3fb70c1bf9
commit
e4c56a0371
3 changed files with 1 additions and 41 deletions
|
|
@ -152,7 +152,7 @@ Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>&
|
|||
if (_force_discrete || i->second->list()->interpolation() == ControlList::Discrete) {
|
||||
ret = i->second->list()->rt_safe_earliest_event_discrete_unlocked (t.to_double(), x, y, true);
|
||||
} else {
|
||||
ret = i->second->list()->rt_safe_earliest_event_unlocked(t.to_double(), x, y, true);
|
||||
ret = i->second->list()->rt_safe_earliest_event_linear_unlocked(t.to_double(), x, y, true);
|
||||
}
|
||||
if (!ret) {
|
||||
DEBUG_TRACE (DEBUG::Sequence, string_compose ("Iterator: CC %1 (size %2) has no events past %3\n",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue