Change SearchValue to support normal uncompressed waveforms

This commit is contained in:
Mark Watkins 2014-07-21 13:19:51 +10:00
parent 14a1eb5a03
commit abb31cc88b

View File

@ -969,8 +969,9 @@ EventDataType Session::SearchValue(ChannelID code, qint64 time)
cnt = el->count(); cnt = el->count();
if (el->type() == EVL_Waveform) { if (el->type() == EVL_Waveform) {
qDebug() << "Called SearchEvent on a waveform object!"; qint64 tt = time - el->first();
return 0; qint64 i = tt / el->rate();
return el->data(i);
} else { } else {
start = el->first(); start = el->first();
tptr = el->rawTime(); tptr = el->rawTime();