From: Bert Vermeulen Date: Thu, 15 Dec 2011 02:31:31 +0000 (+0100) Subject: make time/duration work, at least when loading from a session file X-Git-Tag: libsigrok-0.1.0~215 X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=cb1e389c72ead8cf6eb440f3194f5056d86069ec;p=libsigrok.git make time/duration work, at least when loading from a session file PD decode() call now takes 3 arguments: timeoffset, duration, data as per the current API specification. --- diff --git a/session_driver.c b/session_driver.c index fd5b11fc..e59f49d1 100644 --- a/session_driver.c +++ b/session_driver.c @@ -33,6 +33,7 @@ struct session_vdevice { char *capturefile; struct zip *archive; struct zip_file *capfile; + int bytes_read; uint64_t samplerate; int unitsize; int num_probes; @@ -66,6 +67,7 @@ static int feed_chunk(int fd, int revents, void *session_data) struct session_vdevice *vdevice; struct sr_datafeed_packet packet; struct sr_datafeed_logic logic; + uint64_t sample_period_ps; GSList *l; void *buf; int ret, got_data; @@ -94,12 +96,14 @@ static int feed_chunk(int fd, int revents, void *session_data) if (ret > 0) { got_data = TRUE; packet.type = SR_DF_LOGIC; - packet.timeoffset = 0; - packet.duration = 0; + sample_period_ps = 1000000000000 / vdevice->samplerate; + packet.timeoffset = sample_period_ps * (vdevice->bytes_read / vdevice->unitsize); + packet.duration = sample_period_ps * (ret / vdevice->unitsize); packet.payload = &logic; logic.length = ret; logic.unitsize = vdevice->unitsize; logic.data = buf; + vdevice->bytes_read += ret; sr_session_bus(session_data, &packet); } else { /* done with this capture file */