summaryrefslogtreecommitdiff
path: root/libsigrokdecode.h
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2015-08-20 19:36:12 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2015-08-20 20:20:34 +0200
commitcda2d36cfeed3f921252ffa95377529d6bdc074b (patch)
tree6a57288ffac64e0166858a944913148be7e58861 /libsigrokdecode.h
parentbbe1b715a71536e38a2b7e2362dbd8827a18ec1f (diff)
downloadlibsigrokdecode-cda2d36cfeed3f921252ffa95377529d6bdc074b.tar.gz
libsigrokdecode-cda2d36cfeed3f921252ffa95377529d6bdc074b.zip
Pass unitsize per sample chunk.
Don't pass unitsize to srd_inst_channel_set_all(), have that only set the channel map. Instead, srd_session_send() now has a parameter for the unitsize which is passed with every new chunk to be decoded. This is in preparation to fix issues with devices or files which have a unitsize != 1 and where the "guessed" unitsize based on the number of channels is not correct. This also allows for (potential) future changes where every chunk can indeed have a different unitsize. This fixes (parts of) bug #352.
Diffstat (limited to 'libsigrokdecode.h')
-rw-r--r--libsigrokdecode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsigrokdecode.h b/libsigrokdecode.h
index 0aed0f3..9d403dd 100644
--- a/libsigrokdecode.h
+++ b/libsigrokdecode.h
@@ -277,7 +277,7 @@ SRD_API int srd_session_metadata_set(struct srd_session *sess, int key,
GVariant *data);
SRD_API int srd_session_send(struct srd_session *sess,
uint64_t start_samplenum, uint64_t end_samplenum,
- const uint8_t *inbuf, uint64_t inbuflen);
+ const uint8_t *inbuf, uint64_t inbuflen, uint64_t unitsize);
SRD_API int srd_session_destroy(struct srd_session *sess);
SRD_API int srd_pd_output_callback_add(struct srd_session *sess,
int output_type, srd_pd_output_callback cb, void *cb_data);
@@ -295,7 +295,7 @@ SRD_API int srd_decoder_unload_all(void);
SRD_API int srd_inst_option_set(struct srd_decoder_inst *di,
GHashTable *options);
SRD_API int srd_inst_channel_set_all(struct srd_decoder_inst *di,
- GHashTable *channels, int unit_size);
+ GHashTable *channels);
SRD_API struct srd_decoder_inst *srd_inst_new(struct srd_session *sess,
const char *id, GHashTable *options);
SRD_API int srd_inst_stack(struct srd_session *sess,