filter: Move the proplist defines into the central place and document them.
authorColin Guthrie <colin@mageia.org>
Wed, 20 Apr 2011 08:25:31 +0000 (09:25 +0100)
committerColin Guthrie <colin@mageia.org>
Wed, 20 Apr 2011 08:25:31 +0000 (09:25 +0100)
src/modules/module-filter-apply.c
src/modules/module-filter-heuristics.c
src/pulse/proplist.h

index d4bded5..c29e74d 100644 (file)
@@ -36,9 +36,6 @@
 
 #include "module-filter-apply-symdef.h"
 
-#define PA_PROP_FILTER_WANT "filter.want"
-#define PA_PROP_FILTER_SUPPRESS "filter.suppress"
-
 
 PA_MODULE_AUTHOR("Colin Guthrie");
 PA_MODULE_DESCRIPTION("Load filter sinks automatically when needed");
index fb01f85..bd8a600 100644 (file)
@@ -33,9 +33,6 @@
 
 #include "module-filter-heuristics-symdef.h"
 
-#define PA_PROP_FILTER_WANT "filter.want"
-#define PA_PROP_FILTER_SUPPRESS "filter.suppress"
-
 
 PA_MODULE_AUTHOR("Colin Guthrie");
 PA_MODULE_DESCRIPTION("Detect when various filters are desirable");
index 5db3ada..4670d61 100644 (file)
@@ -62,6 +62,12 @@ PA_C_DECL_BEGIN
 /** For streams: logic role of this media. One of the strings "video", "music", "game", "event", "phone", "animation", "production", "a11y", "test" */
 #define PA_PROP_MEDIA_ROLE                     "media.role"
 
+/** For streams: the name of a filter that is desired, e.g. "echo-cancel" or "equalizer-sink" \since 1.0 */
+#define PA_PROP_FILTER_WANT "filter.want"
+
+/** For streams: the name of a filter that should specifically suppressed (i.e. overrides PA_PROP_FILTER_WANT). Useful for the times that PA_PROP_FILTER_WANT is automatically added (e.g. echo-cancellation for phone streams when $VOIP_APP does it's own, internal AEC) \since 1.0 */
+#define PA_PROP_FILTER_SUPPRESS "filter.suppress"
+
 /** For event sound streams: XDG event sound name. e.g. "message-new-email" (Event sound streams are those with media.role set to "event") */
 #define PA_PROP_EVENT_ID                       "event.id"