From d78bea5e3285d62cc1968905d917728eb2d9b7ac Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 23 Mar 2023 11:47:27 +0100 Subject: [PATCH] module-combine-stream: improve docs --- src/modules/module-combine-stream.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/modules/module-combine-stream.c b/src/modules/module-combine-stream.c index 0dc10f0d8..d5f04c84b 100644 --- a/src/modules/module-combine-stream.c +++ b/src/modules/module-combine-stream.c @@ -35,6 +35,10 @@ * - a new virtual sink that forwards audio to other sinks * - a new virtual source that combines audio from other sources * + * The sources and sink that need to be combined can be selected using generic match + * rules. This makes it possible to combine static nodes or nodes based on certain + * properties. + * * ## Module Options * * - `node.name`: a unique name for the stream @@ -42,6 +46,7 @@ * - `combine.mode` = capture | playback | sink | source, default sink * - `combine.props = {}`: properties to be passed to the sink/source * - `stream.props = {}`: properties to be passed to the streams + * - `stream.rules = {}`: rules for matching streams, use create-stream actions * * ## General options *