Fix source/region length on MIDI import.
git-svn-id: svn://localhost/ardour2/branches/3.0@3391 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
f360ef94da
commit
fdebcfb838
@ -343,7 +343,7 @@ write_midi_data_to_new_files (SMFReader* source, Session::import_status& status,
|
||||
smfs->session().engine().frame_rate(),
|
||||
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) floor ((t / source->ppqn()) * frames_per_beat));
|
||||
|
||||
smfs->flush_header();
|
||||
smfs->flush_footer();
|
||||
|
@ -71,8 +71,6 @@ SMFSource::SMFSource (Session& s, std::string path, Flag flags)
|
||||
throw failed_constructor ();
|
||||
}
|
||||
|
||||
cerr << "SMF Source path: " << path << endl;
|
||||
|
||||
assert(_name.find("/") == string::npos);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user