mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 16:24:57 +01:00
Logarithmic note seek for Sequence iterator.
git-svn-id: svn://localhost/ardour2/branches/3.0@5803 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
70ad8b059a
commit
a86b994c68
1 changed files with 2 additions and 7 deletions
|
|
@ -100,13 +100,8 @@ Sequence<Time>::const_iterator::const_iterator(const Sequence<Time>& seq, Time t
|
|||
seq.read_lock();
|
||||
|
||||
// Find first note which begins after t
|
||||
for (typename Sequence<Time>::Notes::const_iterator i = seq.notes().begin();
|
||||
i != seq.notes().end(); ++i) {
|
||||
if ((*i)->time() >= t) {
|
||||
_note_iter = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
boost::shared_ptr< Note<Time> > search_note(new Note<Time>(0, t, 0, 0, 0));
|
||||
_note_iter = seq.notes().lower_bound(search_note);
|
||||
assert(_note_iter == seq.notes().end() || (*_note_iter)->time() >= t);
|
||||
|
||||
// Find first sysex event after t
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue