Don't use mask on/off times to set session start and end

They will be updated according to the edf file times.
This commit is contained in:
Phil Olynyk 2020-03-24 10:34:50 -04:00
parent 1f4e989297
commit ca78954471

View File

@ -2086,8 +2086,10 @@ void ResDayTask::run()
if (ovr.filemap.size() == 0)
continue;
Session * sess = new Session(mach, ovr.start);
sess->set_first(quint64(ovr.start)*1000L);
sess->set_last(quint64(ovr.end)*1000L);
// Do not set the session times according to Mask on/off times
// The LoadXXX edf routines will update them with recording start and durations
// sess->set_first(quint64(ovr.start)*1000L);
// sess->set_last(quint64(ovr.end)*1000L);
ovr.sess = sess;
for (auto mit=ovr.filemap.begin(), mend=ovr.filemap.end(); mit != mend; ++mit) {