X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=filter.c;h=df28a72348500be5dc93ba217f1028fc620563c7;hb=b19f4622b6a1d21b00bd93d99e10bb4565ed7af0;hp=9c025710656dfa1fb064ced4d364c8acfee219b9;hpb=c73d2ea421c2b425c3f0ae33bce2bfd0c448ca5f;p=libsigrok.git diff --git a/filter.c b/filter.c index 9c025710..df28a723 100644 --- a/filter.c +++ b/filter.c @@ -20,8 +20,22 @@ #include #include #include -#include "sigrok.h" -#include "sigrok-internal.h" +#include "libsigrok.h" +#include "libsigrok-internal.h" + +/** + * @file + * + * Helper functions to filter out unused probes from samples. + */ + +/** + * @defgroup grp_filter Probe filter + * + * Helper functions to filter out unused probes from samples. + * + * @{ + */ /** * Remove unused probes from samples. @@ -56,9 +70,8 @@ * The requested unit size must be big enough to hold as * much data as is specified by the number of enabled * probes in 'probelist'. - * @param probelist Pointer to a list of integers (probe numbers). The probe - * numbers in this list are 1-based, i.e. the first probe - * is expected to be numbered 1 (not 0!). Must not be NULL. + * @param probelist Pointer to a list of probe numbers, numbered starting + * from 0. The list is terminated with -1. * @param data_in Pointer to the input data buffer. Must not be NULL. * @param length_in The input data length (>= 1), in number of bytes. * @param data_out Variable which will point to the newly allocated buffer @@ -74,8 +87,8 @@ * out_unitsize, data_out, and length_out are undefined. */ SR_API int sr_filter_probes(int in_unitsize, int out_unitsize, - const int *probelist, const unsigned char *data_in, - uint64_t length_in, char **data_out, + const int *probelist, const uint8_t *data_in, + uint64_t length_in, uint8_t **data_out, uint64_t *length_out) { unsigned int in_offset, out_offset; @@ -103,13 +116,13 @@ SR_API int sr_filter_probes(int in_unitsize, int out_unitsize, } num_enabled_probes = 0; - for (i = 0; probelist[i]; i++) + for (i = 0; probelist[i] != -1; i++) num_enabled_probes++; /* Are there more probes than the target unit size supports? */ if (num_enabled_probes > out_unitsize * 8) { sr_err("filter: %s: too many probes (%d) for the target unit " - "size (%d)", num_enabled_probes, out_unitsize, __func__); + "size (%d)", __func__, num_enabled_probes, out_unitsize); return SR_ERR_ARG; } @@ -130,8 +143,8 @@ SR_API int sr_filter_probes(int in_unitsize, int out_unitsize, while (in_offset <= length_in - in_unitsize) { memcpy(&sample_in, data_in + in_offset, in_unitsize); sample_out = out_bit = 0; - for (i = 0; probelist[i]; i++) { - if (sample_in & (1 << (probelist[i] - 1))) + for (i = 0; probelist[i] != -1; i++) { + if (sample_in & (1 << (probelist[i]))) sample_out |= (1 << out_bit); out_bit++; } @@ -143,3 +156,5 @@ SR_API int sr_filter_probes(int in_unitsize, int out_unitsize, return SR_OK; } + +/** @} */