From abb31cc88b3009243f8edced281126342cd5a36d Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 21 Jul 2014 13:19:51 +1000 Subject: [PATCH] Change SearchValue to support normal uncompressed waveforms --- sleepyhead/SleepLib/session.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sleepyhead/SleepLib/session.cpp b/sleepyhead/SleepLib/session.cpp index 852d048a..1a581946 100644 --- a/sleepyhead/SleepLib/session.cpp +++ b/sleepyhead/SleepLib/session.cpp @@ -969,8 +969,9 @@ EventDataType Session::SearchValue(ChannelID code, qint64 time) cnt = el->count(); if (el->type() == EVL_Waveform) { - qDebug() << "Called SearchEvent on a waveform object!"; - return 0; + qint64 tt = time - el->first(); + qint64 i = tt / el->rate(); + return el->data(i); } else { start = el->first(); tptr = el->rawTime();