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:
Arun Raghavan 2021-06-17 17:03:07 -04:00
parent 2d251509db
commit 3272940731

View file

@ -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,