X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=sigrokdecode.h;h=76b53f5f99ea3e168fe1217f7fc420f2158dd7dc;hp=9f7925282fd7a92f4e3e0dc80a8b8735ca4ef2d4;hb=74911b4c1f6d184dac878d94992d480af0564734;hpb=6eb875784c96db52e962f40df24035c31c5be738 diff --git a/sigrokdecode.h b/sigrokdecode.h index 9f79252..76b53f5 100644 --- a/sigrokdecode.h +++ b/sigrokdecode.h @@ -93,14 +93,19 @@ struct srd_decoder { /** Python object that performs the decoding */ PyObject *py_decobj; +}; + +struct srd_decoder_instance { PyObject *py_instance; }; int srd_init(void); GSList *srd_list_decoders(void); struct srd_decoder *srd_get_decoder_by_id(const char *id); -int srd_run_decoder(struct srd_decoder *dec, uint8_t *inbuf, uint64_t inbuflen, +int srd_run_decoder(struct srd_decoder_instance *dec, + uint8_t *inbuf, uint64_t inbuflen, uint8_t **outbuf, uint64_t *outbuflen); +struct srd_decoder_instance *srd_instance_new(const char *id); int srd_exit(void); #ifdef __cplusplus