[][src]Module libpulse_sys::proplist

Property list constants and functions.

Structs

pa_proplist

A property list object. Basically a dictionary with ASCII strings as keys and arbitrary data as values.

Enums

pa_update_mode_t

Constants

PA_PROP_APPLICATION_ICON

For clients/streams: application icon. A binary blob containing PNG image data.

PA_PROP_APPLICATION_ICON_NAME

For clients/streams: an XDG icon name for the application. E.g. "totem".

PA_PROP_APPLICATION_ID

For clients/streams: a textual id for identifying an application logically. E.g. "org.gnome.Totem".

PA_PROP_APPLICATION_LANGUAGE

For clients/streams: application language if applicable, in standard POSIX format. E.g. "de_DE".

PA_PROP_APPLICATION_NAME

For clients/streams: localized human readable application name. E.g. "Totem Music Player".

PA_PROP_APPLICATION_PROCESS_BINARY

For clients/streams: application process name. E.g. "totem".

PA_PROP_APPLICATION_PROCESS_HOST

For clients/streams: host name the application runs on. E.g. "omega".

PA_PROP_APPLICATION_PROCESS_ID

For clients/streams on UNIX: application process PID, an integer formatted as string. E.g. "4711".

PA_PROP_APPLICATION_PROCESS_MACHINE_ID

For clients/streams: the D-Bus host id the application runs on. E.g. "543679e7b01393ed3e3e650047d78f6e".

PA_PROP_APPLICATION_PROCESS_SESSION_ID

For clients/streams: an id for the login session the application runs in. On Unix the value of $XDG_SESSION_ID. E.g. "5".

PA_PROP_APPLICATION_PROCESS_USER

For clients/streams: application user name. E.g. "lennart".

PA_PROP_APPLICATION_VERSION

For clients/streams: a version string, e.g. "0.6.88".

PA_PROP_DEVICE_ACCESS_MODE

For devices: access mode of the device if applicable. One of "mmap", "mmap_rewrite", "serial".

PA_PROP_DEVICE_API

For devices: API this device is accessed with. E.g. "alsa".

PA_PROP_DEVICE_BUFFERING_BUFFER_SIZE

For devices: buffer size in bytes, integer formatted as string.

PA_PROP_DEVICE_BUFFERING_FRAGMENT_SIZE

For devices: fragment size in bytes, integer formatted as string.

PA_PROP_DEVICE_BUS

For devices: bus of the device if applicable. One of "isa", "pci", "usb", "firewire", "bluetooth".

PA_PROP_DEVICE_BUS_PATH

For devices: bus path to the device in the OS’ format. E.g. "/sys/bus/pci/devices/0000:00:1f.2".

PA_PROP_DEVICE_CLASS

For devices: device class. One of "sound", "modem", "monitor", "filter".

PA_PROP_DEVICE_DESCRIPTION

For devices: localized human readable device one-line description. E.g. "Foobar Industries USB Headset 2000+ Ultra".

PA_PROP_DEVICE_FORM_FACTOR

For devices: form factor if applicable. One of "internal", "speaker", "handset", "tv", "webcam", "microphone", "headset", "headphone", "hands-free", "car", "hifi", "computer", "portable".

PA_PROP_DEVICE_ICON

For devices: icon for the device. A binary blob containing PNG image data.

PA_PROP_DEVICE_ICON_NAME

For devices: an XDG icon name for the device. E.g. "sound-card-speakers-usb".

PA_PROP_DEVICE_INTENDED_ROLES

For devices: intended use. A space separated list of roles (see PA_PROP_MEDIA_ROLE) this device is particularly well suited for, due to latency, quality or form factor.

PA_PROP_DEVICE_MASTER_DEVICE

For filter devices: master device id if applicable.

PA_PROP_DEVICE_PRODUCT_ID

For devices: product ID if applicable. E.g. 4565.

PA_PROP_DEVICE_PRODUCT_NAME

For devices: product name if applicable. E.g. "SuperSpeakers 2000 Pro".

PA_PROP_DEVICE_PROFILE_DESCRIPTION

For devices: human readable one-line description of the profile this device is in. E.g. "Analog Stereo", ...

PA_PROP_DEVICE_PROFILE_NAME

For devices: profile identifier for the profile this devices is in. E.g. "analog-stereo", "analog-surround-40", "iec958-stereo", ...

PA_PROP_DEVICE_SERIAL

For devices: serial number if applicable. E.g. "4711-0815-1234".

PA_PROP_DEVICE_STRING

For devices: device string in the underlying audio layer’s format. E.g. "surround51:0".

PA_PROP_DEVICE_VENDOR_ID

For devices: vendor ID if applicable. E.g. 1274.

PA_PROP_DEVICE_VENDOR_NAME

For devices: vendor name if applicable. E.g. "Foocorp Heavy Industries".

PA_PROP_EVENT_DESCRIPTION

For event sound streams: localized human readable one-line description of the event, formatted as UTF-8. E.g. "Email from lennart@example.com received."

PA_PROP_EVENT_ID

For event sound streams: XDG event sound name. e.g. "message-new-email" (Event sound streams are those with media.role set to "event").

PA_PROP_EVENT_MOUSE_BUTTON

For event sound streams: mouse button that triggered the event if applicable, integer formatted as string with 0=left, 1=middle, 2=right. E.g. "0".

PA_PROP_EVENT_MOUSE_HPOS

For event sound streams: relative horizontal mouse position on the screen if the event sound was triggered by a mouse click, float formatted as text string, ranging from 0.0 (left side of the screen) to 1.0 (right side of the screen). E.g. "0.65".

PA_PROP_EVENT_MOUSE_VPOS

For event sound streams: relative vertical mouse position on the screen if the event sound was triggered by a mouse click, float formatted as text string, ranging from 0.0 (top of the screen) to 1.0 (bottom of the screen). E.g. "0.43".

PA_PROP_EVENT_MOUSE_X

For event sound streams: absolute horizontal mouse position on the screen if the event sound was triggered by a mouse click, integer formatted as text string. E.g. "865".

PA_PROP_EVENT_MOUSE_Y

For event sound streams: absolute vertical mouse position on the screen if the event sound was triggered by a mouse click, integer formatted as text string. E.g. "432".

PA_PROP_FILTER_APPLY

For streams: the name of a filter that is desired, e.g. "echo-cancel" or "equalizer-sink". Differs from PA_PROP_FILTER_WANT in that it forces PulseAudio to apply the filter, regardless of whether PulseAudio thinks it makes sense to do so or not. If this is set, PA_PROP_FILTER_WANT is ignored. In other words, you almost certainly do not want to use this.

PA_PROP_FILTER_SUPPRESS

For streams: the name of a filter that should specifically be 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 its own, internal AEC).

PA_PROP_FILTER_WANT

For streams: the name of a filter that is desired, e.g. "echo-cancel" or "equalizer-sink". PulseAudio may choose to not apply the filter if it does not make sense (for example, applying echo-cancellation on a Bluetooth headset probably does not make sense.

PA_PROP_FORMAT_CHANNELS

For all formats: the number of channels (unsigned integer).

PA_PROP_FORMAT_CHANNEL_MAP

For PCM formats: the channel map of the stream as returned by pa_channel_map_snprint.

PA_PROP_FORMAT_RATE

For all formats: the sample rate (unsigned integer).

PA_PROP_FORMAT_SAMPLE_FORMAT

For PCM formats: the sample format used as returned by pa_sample_format_to_string.

PA_PROP_MEDIA_ARTIST

For streams: localized media artist if applicable, formatted as UTF-8. E.g. "Guns'N'Roses".

PA_PROP_MEDIA_COPYRIGHT

For streams: localized media copyright string if applicable, formatted as UTF-8. E.g. "Evil Record Corp.".

PA_PROP_MEDIA_FILENAME

For streams: source filename if applicable, in URI format or local path. E.g. "/home/lennart/music/foobar.ogg".

PA_PROP_MEDIA_ICON

For streams: icon for the media. A binary blob containing PNG image data.

PA_PROP_MEDIA_ICON_NAME

For streams: an XDG icon name for the media. E.g. "audio-x-mp3".

PA_PROP_MEDIA_LANGUAGE

For streams: media language if applicable, in standard POSIX format. E.g. "de_DE".

PA_PROP_MEDIA_NAME

For streams: localized media name, formatted as UTF-8. E.g. "Guns'N'Roses: Civil War".

PA_PROP_MEDIA_ROLE

For streams: logic role of this media. One of the strings "video", "music", "game", "event", "phone", "animation", "production", "a11y", "test".

PA_PROP_MEDIA_SOFTWARE

For streams: localized media generator software string if applicable, formatted as UTF-8. E.g. "Foocrop AudioFrobnicator".

PA_PROP_MEDIA_TITLE

For streams: localized media title if applicable, formatted as UTF-8. E.g. "Civil War".

PA_PROP_MODULE_AUTHOR

For modules: the author’s name, formatted as UTF-8 string. E.g. "Lennart Poettering".

PA_PROP_MODULE_DESCRIPTION

For modules: a human readable one-line description of the module’s purpose formatted as UTF-8. E.g. "Frobnicate sounds with a flux compensator".

PA_PROP_MODULE_USAGE

For modules: a human readable usage description of the module’s arguments formatted as UTF-8.

PA_PROP_MODULE_VERSION

For modules: a version string for the module. E.g. "0.9.15".

PA_PROP_WINDOW_DESKTOP

For streams that belong to a window on the screen: if the windowing system supports multiple desktops, a comma separated list of indexes of the desktops this window is visible on. If this property is an empty string, it is visible on all desktops (i.e. ‘sticky’). The first desktop is zero. E.g. "0,2,3".

PA_PROP_WINDOW_HEIGHT

For streams that belong to a window on the screen: window height on the screen, integer formatted as text string. E.g. "643".

PA_PROP_WINDOW_HPOS

For streams that belong to a window on the screen: relative position of the window center on the screen, float formatted as text string, ranging from 0.0 (left side of the screen) to 1.0 (right side of the screen). E.g. "0.65".

PA_PROP_WINDOW_ICON

For streams that belong to a window on the screen: window icon. A binary blob containing PNG image data.

PA_PROP_WINDOW_ICON_NAME

For streams that belong to a window on the screen: an XDG icon name for the window. E.g. "totem".

PA_PROP_WINDOW_ID

For streams that belong to a window on the screen: a textual id for identifying a window logically. E.g. "org.gnome.Totem.MainWindow".

PA_PROP_WINDOW_NAME

For streams that belong to a window on the screen: localized window title. E.g. "Totem Music Player".

PA_PROP_WINDOW_VPOS

For streams that belong to a window on the screen: relative position of the window center on the screen, float formatted as text string, ranging from 0.0 (top of the screen) to 1.0 (bottom of the screen). E.g. "0.43".

PA_PROP_WINDOW_WIDTH

For streams that belong to a window on the screen: window width on the screen, integer formatted as text string. e.g. "365".

PA_PROP_WINDOW_X

For streams that belong to a window on the screen: absolute horizontal window position on the screen, integer formatted as text string. E.g. "865".

PA_PROP_WINDOW_X11_DISPLAY

For streams that belong to an X11 window on the screen: the X11 display string. E.g. ":0.0".

PA_PROP_WINDOW_X11_MONITOR

For streams that belong to an X11 window on the screen: the X11 monitor the window is on, an integer formatted as string. E.g. "0".

PA_PROP_WINDOW_X11_SCREEN

For streams that belong to an X11 window on the screen: the X11 screen the window is on, an integer formatted as string. E.g. "0".

PA_PROP_WINDOW_X11_XID

For streams that belong to an X11 window on the screen: the window XID, an integer formatted as string. E.g. "25632".

PA_PROP_WINDOW_Y

For streams that belong to a window on the screen: absolute vertical window position on the screen, integer formatted as text string. E.g. "343".

PA_UPDATE_MERGE
PA_UPDATE_REPLACE
PA_UPDATE_SET

Functions

pa_proplist_clear
pa_proplist_contains
pa_proplist_copy
pa_proplist_equal
pa_proplist_free
pa_proplist_from_string
pa_proplist_get
pa_proplist_gets
pa_proplist_isempty
pa_proplist_iterate
pa_proplist_key_valid
pa_proplist_new
pa_proplist_set
pa_proplist_setf
pa_proplist_setp
pa_proplist_sets
pa_proplist_size
pa_proplist_to_string
pa_proplist_to_string_sep
pa_proplist_unset
pa_proplist_unset_many
pa_proplist_update