mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 05:36:31 +01:00
megaopus patch #2 for today: remove nframes64_t and sframes_t from source
git-svn-id: svn://localhost/ardour2/branches/3.0@7792 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
10bdce85a0
commit
ede4ecbb00
118 changed files with 1012 additions and 1000 deletions
|
|
@ -183,7 +183,7 @@ MidiSource::length (framepos_t pos) const
|
|||
}
|
||||
|
||||
void
|
||||
MidiSource::update_length (sframes_t /*pos*/, sframes_t /*cnt*/)
|
||||
MidiSource::update_length (framepos_t /*pos*/, framecnt_t /*cnt*/)
|
||||
{
|
||||
// You're not the boss of me!
|
||||
}
|
||||
|
|
@ -197,8 +197,8 @@ MidiSource::invalidate ()
|
|||
|
||||
/** @param filtered A set of parameters whose MIDI messages will not be returned */
|
||||
nframes_t
|
||||
MidiSource::midi_read (Evoral::EventSink<nframes_t>& dst, sframes_t source_start,
|
||||
sframes_t start, nframes_t cnt,
|
||||
MidiSource::midi_read (Evoral::EventSink<nframes_t>& dst, framepos_t source_start,
|
||||
framepos_t start, nframes_t cnt,
|
||||
MidiStateTracker* tracker,
|
||||
std::set<Evoral::Parameter> const & filtered) const
|
||||
{
|
||||
|
|
@ -226,7 +226,7 @@ MidiSource::midi_read (Evoral::EventSink<nframes_t>& dst, sframes_t source_start
|
|||
|
||||
// Read events up to end
|
||||
for (; i != _model->end(); ++i) {
|
||||
const sframes_t time_frames = converter.to(i->time());
|
||||
const framecnt_t time_frames = converter.to(i->time());
|
||||
if (time_frames < start + cnt) {
|
||||
/* convert event times to session frames by adding on the source start position in session frames */
|
||||
dst.write (time_frames + source_start, i->event_type(), i->size(), i->buffer());
|
||||
|
|
@ -252,7 +252,7 @@ MidiSource::midi_read (Evoral::EventSink<nframes_t>& dst, sframes_t source_start
|
|||
}
|
||||
|
||||
nframes_t
|
||||
MidiSource::midi_write (MidiRingBuffer<nframes_t>& source, sframes_t source_start, nframes_t duration)
|
||||
MidiSource::midi_write (MidiRingBuffer<nframes_t>& source, framepos_t source_start, nframes_t duration)
|
||||
{
|
||||
Glib::Mutex::Lock lm (_lock);
|
||||
const nframes_t ret = write_unlocked (source, source_start, duration);
|
||||
|
|
@ -261,7 +261,7 @@ MidiSource::midi_write (MidiRingBuffer<nframes_t>& source, sframes_t source_star
|
|||
}
|
||||
|
||||
void
|
||||
MidiSource::mark_streaming_midi_write_started (NoteMode mode, sframes_t start_frame)
|
||||
MidiSource::mark_streaming_midi_write_started (NoteMode mode, framepos_t start_frame)
|
||||
{
|
||||
set_timeline_position(start_frame);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue