Lines Matching defs:plugins
181 static void snd_pcm_ladspa_free_plugins(struct list_head *plugins)
183 while (!list_empty(plugins)) {
184 snd_pcm_ladspa_plugin_t *plugin = list_entry(plugins->next, snd_pcm_ladspa_plugin_t, list);
1530 snd_config_t *plugins,
1536 if (plugins == NULL) /* nothing TODO */
1538 if (snd_config_get_type(plugins) != SND_CONFIG_TYPE_COMPOUND) {
1539 SNDERR("plugins must be defined inside a compound");
1544 snd_config_for_each(i, next, plugins) {
1575 * \param ladspa_path The path for LADSPA plugins
1656 This plugin allows to apply a set of LADPSA plugins.
1673 Instances of LADSPA plugins are created dynamically.
1686 [path STR] # Path (directory) with LADSPA plugins
1687 plugins | # Definition for both directions
1743 snd_config_t *plugins = NULL, *pplugins = NULL, *cplugins = NULL;
1767 if (strcmp(id, "plugins") == 0) {
1768 plugins = n;
1786 if (plugins) {
1788 SNDERR("'plugins' definition cannot be combined with 'playback_plugins' or 'capture_plugins'");
1791 pplugins = plugins;
1792 cplugins = plugins;