diff options
Diffstat (limited to 'slv2/plugin.h')
-rw-r--r-- | slv2/plugin.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/slv2/plugin.h b/slv2/plugin.h index a3ae1f0..0592bfd 100644 --- a/slv2/plugin.h +++ b/slv2/plugin.h @@ -270,6 +270,18 @@ uint32_t slv2_plugin_get_num_ports(SLV2Plugin p); +/** Get the number of ports on this plugin that are members of some class(es). + * + * Note that this is a varargs function so ports fitting any type 'profile' + * desired can be found quickly. REMEMBER TO TERMINATE THE PARAMETER LIST + * OF THIS FUNCTION WITH NULL OR VERY NASTY THINGS WILL HAPPEN. + * + * Time = O(1) + */ +uint32_t +slv2_plugin_get_num_ports_of_class(SLV2Plugin p, + SLV2Value class_1, ...); + /** Return whether or not the plugin introduces (and reports) latency. * * The index of the latency port can be found with slv2_plugin_get_latency_port |