From 66d311afcadca07076cc22a33d35c8132bb808c9 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Wed, 27 Oct 2021 12:24:09 -0400 Subject: [PATCH] Remove broken and misguided "compression" during oximetry cleanup. You can't simply drop identical samples in a waveform with a fixed sample rate. --- oscar/mainwindow.cpp | 65 -------------------------------------------- 1 file changed, 65 deletions(-) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index 2b46996a..23730769 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -1547,69 +1547,6 @@ void MainWindow::on_action_Frequently_Asked_Questions_triggered() QMessageBox::information(nullptr, STR_MessageBox_Information, tr("The FAQ is not yet implemented")); } -void packEventList(EventList *el, EventDataType minval = 0) -{ - if (el->count() < 2) { return; } - - EventList nel(EVL_Waveform); - EventDataType t = 0, lastt = 0; //el->data(0); - qint64 ti = 0; //=el->time(0); - //nel.AddEvent(ti,lastt); - bool f = false; - qint64 lasttime = 0; - EventDataType min = 999, max = 0; - - for (quint32 i = 0; i < el->count(); i++) { - t = el->data(i); - ti = el->time(i); - f = false; - - if (t > minval) { - if (t != lastt) { - if (!lasttime) { - nel.setFirst(ti); - } - - nel.AddEvent(ti, t); - - if (t < min) { min = t; } - - if (t > max) { max = t; } - - lasttime = ti; - f = true; - } - } else { - if (lastt > minval) { - nel.AddEvent(ti, lastt); - lasttime = ti; - f = true; - } - } - - - lastt = t; - } - - if (!f) { - if (t > minval) { - nel.AddEvent(ti, t); - } - } - - el->setFirst(nel.first()); - el->setLast(nel.last()); - el->setMin(min); - el->setMax(max); - - el->getData().clear(); - el->getTime().clear(); - el->setCount(nel.count()); - - el->getData() = nel.getData(); - el->getTime() = nel.getTime(); -} - void MainWindow::on_action_Rebuild_Oximetry_Index_triggered() { QVector valid; @@ -1708,8 +1645,6 @@ void MainWindow::on_action_Rebuild_Oximetry_Index_triggered() } for (int i = 0; i < newlist.size(); i++) { - packEventList(newlist[i], 8); - EventList *el = newlist[i]; if (!f || f > el->first()) { f = el->first(); }