mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
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:
parent
1f4e989297
commit
ca78954471
@ -2086,8 +2086,10 @@ void ResDayTask::run()
|
|||||||
if (ovr.filemap.size() == 0)
|
if (ovr.filemap.size() == 0)
|
||||||
continue;
|
continue;
|
||||||
Session * sess = new Session(mach, ovr.start);
|
Session * sess = new Session(mach, ovr.start);
|
||||||
sess->set_first(quint64(ovr.start)*1000L);
|
// Do not set the session times according to Mask on/off times
|
||||||
sess->set_last(quint64(ovr.end)*1000L);
|
// 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;
|
ovr.sess = sess;
|
||||||
|
|
||||||
for (auto mit=ovr.filemap.begin(), mend=ovr.filemap.end(); mit != mend; ++mit) {
|
for (auto mit=ovr.filemap.begin(), mend=ovr.filemap.end(); mit != mend; ++mit) {
|
||||||
|
Loading…
Reference in New Issue
Block a user