13
0

Fix rounding errors in region/source length calculuation in import (regions appearing slightly too short).

git-svn-id: svn://localhost/ardour2/branches/3.0@3396 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2008-05-22 21:46:44 +00:00
parent 54bec37b5a
commit f32938f38e

View File

@ -343,7 +343,7 @@ write_midi_data_to_new_files (SMFReader* source, Session::import_status& status,
smfs->session().engine().frame_rate(), smfs->session().engine().frame_rate(),
smfs->session().tempo_map().meter_at(timeline_position)); smfs->session().tempo_map().meter_at(timeline_position));
smfs->update_length(0, (nframes_t) floor ((t / source->ppqn()) * frames_per_beat)); smfs->update_length(0, (nframes_t) ceil ((t / (double)source->ppqn()) * frames_per_beat));
smfs->flush_header(); smfs->flush_header();
smfs->flush_footer(); smfs->flush_footer();