diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2015-08-20 19:36:12 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2015-08-20 20:20:34 +0200 |
commit | cda2d36cfeed3f921252ffa95377529d6bdc074b (patch) | |
tree | 6a57288ffac64e0166858a944913148be7e58861 /libsigrokdecode-internal.h | |
parent | bbe1b715a71536e38a2b7e2362dbd8827a18ec1f (diff) | |
download | libsigrokdecode-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-internal.h')
-rw-r--r-- | libsigrokdecode-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsigrokdecode-internal.h b/libsigrokdecode-internal.h index e9aef64..9260363 100644 --- a/libsigrokdecode-internal.h +++ b/libsigrokdecode-internal.h @@ -61,7 +61,7 @@ SRD_PRIV struct srd_decoder_inst *srd_inst_find_by_obj( const GSList *stack, SRD_PRIV int srd_inst_start(struct srd_decoder_inst *di); SRD_PRIV int srd_inst_decode(const struct srd_decoder_inst *di, 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_PRIV void srd_inst_free(struct srd_decoder_inst *di); SRD_PRIV void srd_inst_free_all(struct srd_session *sess, GSList *stack); |