mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
echo-cancel: Don't use application name for stream node name
This is not too useful while looking at pipeline graphs, etc. We will likely want to expand this to also include the module id or something to distinguish multiple echo-cancel instances (which we can currently do via the factory ID).
This commit is contained in:
parent
2d251509db
commit
3272940731
1 changed files with 2 additions and 0 deletions
|
|
@ -516,6 +516,7 @@ static int setup_streams(struct impl *impl)
|
|||
struct pw_properties *props;
|
||||
|
||||
props = pw_properties_new(
|
||||
PW_KEY_NODE_NAME, "echo-cancel-capture",
|
||||
PW_KEY_NODE_VIRTUAL, "true",
|
||||
NULL);
|
||||
pw_properties_setf(props,
|
||||
|
|
@ -553,6 +554,7 @@ static int setup_streams(struct impl *impl)
|
|||
&sink_events, impl);
|
||||
|
||||
props = pw_properties_new(
|
||||
PW_KEY_NODE_NAME, "echo-cancel-playback",
|
||||
PW_KEY_NODE_VIRTUAL, "true",
|
||||
NULL);
|
||||
pw_properties_setf(props,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue