mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Change SearchValue to support normal uncompressed waveforms
This commit is contained in:
parent
14a1eb5a03
commit
abb31cc88b
@ -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();
|
||||||
|
Loading…
Reference in New Issue
Block a user