mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Fix PRS1 Breathing not Detected flagging by mistake at start of waveform blocks
This commit is contained in:
parent
c54a533a70
commit
a39e9345d5
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user