summaryrefslogtreecommitdiff
path: root/libsigrokdecode-internal.h
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2017-02-21 22:10:35 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2017-02-21 23:37:30 +0100
commit4564e8e53af85e696a58e43677bae87470c52771 (patch)
tree1dd21978ab5437e9f8692f59825f6e83b4e94972 /libsigrokdecode-internal.h
parent9bac00e0b211579935640bb4d6fed988d2d148c4 (diff)
downloadlibsigrokdecode-4564e8e53af85e696a58e43677bae87470c52771.tar.gz
libsigrokdecode-4564e8e53af85e696a58e43677bae87470c52771.zip
Clarify that {start,end,cur}_samplenum are absolute numbers.
Diffstat (limited to 'libsigrokdecode-internal.h')
-rw-r--r--libsigrokdecode-internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsigrokdecode-internal.h b/libsigrokdecode-internal.h
index 2609388..c12b877 100644
--- a/libsigrokdecode-internal.h
+++ b/libsigrokdecode-internal.h
@@ -49,7 +49,7 @@ struct srd_term {
typedef struct {
PyObject_HEAD
struct srd_decoder_inst *di;
- uint64_t start_samplenum;
+ uint64_t abs_start_samplenum;
unsigned int itercnt;
uint8_t *inbuf;
uint64_t inbuflen;
@@ -81,7 +81,7 @@ SRD_PRIV int srd_inst_start(struct srd_decoder_inst *di);
SRD_PRIV void match_array_free(struct srd_decoder_inst *di);
SRD_PRIV void condition_list_free(struct srd_decoder_inst *di);
SRD_PRIV int srd_inst_decode(struct srd_decoder_inst *di,
- uint64_t start_samplenum, uint64_t end_samplenum,
+ uint64_t abs_start_samplenum, uint64_t abs_end_samplenum,
const uint8_t *inbuf, uint64_t inbuflen, uint64_t unitsize);
SRD_PRIV int process_samples_until_condition_match(struct srd_decoder_inst *di, gboolean *found_match);
SRD_PRIV void srd_inst_free(struct srd_decoder_inst *di);