mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
filter-chain: pass quantum-limit to plugins
This commit is contained in:
parent
13b8e3a75d
commit
c3e668049b
1 changed files with 6 additions and 1 deletions
|
|
@ -854,7 +854,12 @@ static struct plugin *plugin_load(struct impl *impl, const char *type, const cha
|
||||||
spa_log_error(impl->log, "can't load plugin type '%s': %m", type);
|
spa_log_error(impl->log, "can't load plugin type '%s': %m", type);
|
||||||
pl = NULL;
|
pl = NULL;
|
||||||
} else {
|
} else {
|
||||||
pl = plugin_func(impl->support, impl->n_support, path, NULL);
|
char quantum[64];
|
||||||
|
snprintf(quantum, sizeof(quantum), "%d", impl->quantum_limit);
|
||||||
|
pl = plugin_func(impl->support, impl->n_support, path,
|
||||||
|
&SPA_DICT_ITEMS(
|
||||||
|
SPA_DICT_ITEM("clock.quantum-limit", quantum)
|
||||||
|
));
|
||||||
}
|
}
|
||||||
if (pl == NULL)
|
if (pl == NULL)
|
||||||
goto exit;
|
goto exit;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue