mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
filter: Move the proplist defines into the central place and document them.
This commit is contained in:
parent
c376ac5920
commit
e727068956
3 changed files with 6 additions and 6 deletions
|
|
@ -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");
|
||||
|
|
|
|||
|
|
@ -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");
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue