mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
audioconvert: remove listener for resampler
When adding a listener, don't add a listener for the resampler because it does not contribute to the result, we only listen for results from the resampler.
This commit is contained in:
parent
73b5e7aec4
commit
5d85e85ba7
1 changed files with 3 additions and 6 deletions
|
|
@ -908,7 +908,7 @@ impl_node_add_listener(void *object,
|
||||||
{
|
{
|
||||||
struct impl *this = object;
|
struct impl *this = object;
|
||||||
struct spa_hook_list save;
|
struct spa_hook_list save;
|
||||||
struct spa_hook l[4];
|
struct spa_hook l[3];
|
||||||
|
|
||||||
spa_return_val_if_fail(this != NULL, -EINVAL);
|
spa_return_val_if_fail(this != NULL, -EINVAL);
|
||||||
|
|
||||||
|
|
@ -924,18 +924,15 @@ impl_node_add_listener(void *object,
|
||||||
&l[0], &fmt_input_events, this);
|
&l[0], &fmt_input_events, this);
|
||||||
spa_node_add_listener(this->channelmix,
|
spa_node_add_listener(this->channelmix,
|
||||||
&l[1], &channelmix_events, this);
|
&l[1], &channelmix_events, this);
|
||||||
spa_node_add_listener(this->resample,
|
|
||||||
&l[2], &resample_events, this);
|
|
||||||
if (this->fmt[SPA_DIRECTION_OUTPUT])
|
if (this->fmt[SPA_DIRECTION_OUTPUT])
|
||||||
spa_node_add_listener(this->fmt[SPA_DIRECTION_OUTPUT],
|
spa_node_add_listener(this->fmt[SPA_DIRECTION_OUTPUT],
|
||||||
&l[3], &fmt_output_events, this);
|
&l[2], &fmt_output_events, this);
|
||||||
|
|
||||||
if (this->fmt[SPA_DIRECTION_INPUT])
|
if (this->fmt[SPA_DIRECTION_INPUT])
|
||||||
spa_hook_remove(&l[0]);
|
spa_hook_remove(&l[0]);
|
||||||
spa_hook_remove(&l[1]);
|
spa_hook_remove(&l[1]);
|
||||||
spa_hook_remove(&l[2]);
|
|
||||||
if (this->fmt[SPA_DIRECTION_OUTPUT])
|
if (this->fmt[SPA_DIRECTION_OUTPUT])
|
||||||
spa_hook_remove(&l[3]);
|
spa_hook_remove(&l[2]);
|
||||||
|
|
||||||
this->add_listener = false;
|
this->add_listener = false;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue