diff options
author | Gareth McMullin <gareth@blacksphere.co.nz> | 2011-11-27 19:17:13 +1300 |
---|---|---|
committer | Gareth McMullin <gareth@blacksphere.co.nz> | 2011-11-27 19:48:01 +1300 |
commit | 3643fc3fe053bf531b4a7618d02c3d92c29f924b (patch) | |
tree | cb4abf3d968d7c1940804b49bd6d255141def583 /sigrokdecode.h | |
parent | f39d2404acb54461f61b676ab164d42e9e76e3fa (diff) | |
download | libsigrokdecode-3643fc3fe053bf531b4a7618d02c3d92c29f924b.tar.gz libsigrokdecode-3643fc3fe053bf531b4a7618d02c3d92c29f924b.zip |
srd: Pass metadata to decoders only on SR_DF_HEADER.
Before this was passed to the decoder's constuctor, but the parameters
may not all be known at construction. Decoders now have a method start()
which is called at the start of the capture, and metadata is passed as
an arg to this function.
Diffstat (limited to 'sigrokdecode.h')
-rw-r--r-- | sigrokdecode.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sigrokdecode.h b/sigrokdecode.h index dabfd33..abc3baa 100644 --- a/sigrokdecode.h +++ b/sigrokdecode.h @@ -108,6 +108,8 @@ int srd_run_decoder(struct srd_decoder_instance *dec, struct srd_decoder_instance *srd_instance_new(const char *id); int srd_instance_set_probe(struct srd_decoder_instance *di, const char *probename, int num); +int srd_instance_start(struct srd_decoder_instance *di, + const char *driver, int unitsize, uint64_t starttime); int srd_exit(void); #ifdef __cplusplus |