Fix PRS1 Breathing not Detected flagging by mistake at start of waveform blocks

This commit is contained in:
Mark Watkins 2016-03-08 17:22:46 +10:00
parent c54a533a70
commit a39e9345d5

View File

@ -2452,7 +2452,7 @@ bool PRS1Import::ParseWaveforms()
quint64 s1, s2; quint64 s1, s2;
qint64 lastti; qint64 lastti=0;
EventList * bnd = nullptr; // Breathing Not Detected EventList * bnd = nullptr; // Breathing Not Detected
for (int i=0; i < size; ++i) { for (int i=0; i < size; ++i) {
@ -2467,7 +2467,7 @@ bool PRS1Import::ParseWaveforms()
quint64 dur = qint64(waveform->duration) * 1000L; quint64 dur = qint64(waveform->duration) * 1000L;
quint64 diff = ti - lastti; quint64 diff = ti - lastti;
if (diff > 200) { if ((diff > 500) && (lastti != 0)) {
if (!bnd) { if (!bnd) {
bnd = session->AddEventList(PRS1_BND, EVL_Event); bnd = session->AddEventList(PRS1_BND, EVL_Event);
} }