PipeWire 1.0.5
|
This document is a design reference on the various objects that exist in the PipeWire media and session management graphs. Explaining what these objects are, how they are meant to be used, and how they relate to other kinds of objects and concepts that exist in subsystems or other libraries.
The media graph represents and enables the media flow inside the PipeWire daemon and between the daemon and its clients. It consists of nodes, ports and links.
A node is a media processing element. It consumes and/or produces buffers that contain data, such as audio or video.
A node may operate entirely inside the PipeWire daemon or it may be operating in a client process. In the second case, media is transferred to/from that client using the PipeWire protocol.
In an analogy to GStreamer, a node is similar (but not equal) to a GStreamer element.
A port is attached on a node and provides an interface for input or output of media on the node. A node may have multiple ports.
A port always has a direction, input or output:
In an analogy to GStreamer, a port is similar (but not equal) to a GStreamer pad.
A link connects two ports of opposite direction, making media flow from the output port to the input port.
The session management graph is a virtual, higher level representation of the media flow. It is created entirely by the session manager and it can affect the routing on the media graph only through the session manager's actions.
The session management graph is useful to abstract the complexity of the actual media flow both for the target user and for the policy management codebase.
An endpoint is a session management object that provides a representation of user conceivable places where media can be routed to/from.
Examples of endpoints associated with hardware on a desktop-like system:
Examples of endpoints associated with hardware in a car:
Examples of endpoints associated with software:
In most cases an endpoint maps to a node on the media graph, but this is not always the case. An endpoint may be backed by several nodes or no nodes at all. Different endpoints may also be sharing nodes in some cases.
An endpoint that does not map to any node may be useful to represent hardware that the session manager needs to be able to control, but there is no way to route media to/from that hardware through the PipeWire media graph. For example, in a car we may have a CD player device that is directly wired to the speakers amplifier and therefore audio flows between them without passing through the controlling CPU. However, it is useful for the session manager to be able to represent the CD player endpoint and the endpoint link between it and the amplifier, so that it can apply audio policy that takes into account whether the CD player is playing or not.
An endpoint may be grouping together targets that can be reached by following the same route and they are mutually exclusive with each other.
For example, the speakers and the headphones jack on a laptop are usually mutually exclusive by hardware design (hardware mutes the speakers when the headphones are enabled) and they share the same ALSA PCM device, so audio still follows the same route to reach both.
In this case, a session manager may choose to group these two targets into the same endpoint, using a parameter on the endpoint object to allow the user to choose the target (if the hardware allows configuring this at all).
An endpoint stream is attached to an endpoint and represents a logical path that can be taken to reach this endpoint, often associated with a use case.
For example, the "Speakers amplifier" endpoint in a car might have the following streams:
In another example, a microphone that can be used for activating a voice assistant might have the following streams:
Endpoint streams may be mutually exclusive or they may used simultaneously, depending on the implementation.
Endpoint streams may be implemented in many ways:
An endpoint link connects two streams from two different endpoints, creating a logical representation of media flow between the endpoints.
An endpoint link may be implemented by creating one or more links in the underlying media graph, or it may be implemented by configuring hardware resources to enable media flow, in case the flow does not pass through the media graph.
Constructing an endpoint link is done by asking the endpoint stream objects to prepare it. First, the source stream is asked to provide linking information. When the information is retrieved, the sink stream is asked to use this information to prepare and to provide its own linking information. When this is done, the session manager is asked to create the link using the provided information.
This mechanism allows stream implementations:
A device represents a handle to an underlying API that is used to create higher level objects, such as nodes, or other devices.
Well-known devices include:
Device API | Description |
---|---|
alsa.pcm.device | A handle to an ALSA card (ex. hw:0 , hw:1 , etc). |
alsa.seq.device | A handle to an ALSA Midi device. |
v4l2.device | A handle to a V4L2 device (/dev/video0 , /dev/video1 , etc..). |
jack.device | A JACK client, allowing PipeWire to slave to JACK for audio input/output. |
A device may have a profile, which allows the user to choose between multiple configurations that the device may be capable of having, or to simply turn the device off, which means that the handle is closed and not used by PipeWire.
The session represents the session manager and can be used to expose global properties or methods that affect the session management.
The session is responsible for book-keeping the default device endpoints (one for each kind of device) that is to be used to link new clients when simulating a PulseAudio-like behavior, where the user can choose from the UI device preferences.
For example, a system may have both "Speakers" and "HDMI" endpoints on the "Audio Output" category and the user may be offered to make a choice within the UI to select which endpoint they want to use by default for audio output. This preference is meant to be stored in the session object.
It is not currently defined whether it is allowed to have multiple sessions or not and how the system should behave if this happens.
This is a proposal
ALSA / UCM | PipeWire |
---|---|
ALSA card | device |
UCM verb | device profile |
UCM device | endpoint (+ target, grouping conflicting devices into the same endpoint) |
UCM modifier | endpoint stream |
PCM stream | node |
In UCM mode, an ALSA card is represented as a PipeWire device, with the available UCM verbs listed as profiles of the device.
Activating a profile (ie. a verb) will create the necessary nodes for the available PCM streams and at the same time it will also create one endpoint for each UCM device. Optionally conflicting UCM devices can be grouped in the same endpoint, listing the conflicting options as targets of the endpoint.
The available UCM modifiers for each UCM device will be added as streams, plus one "default" stream for accessing the device with no modifiers.
ALSA | PipeWire |
---|---|
card | device |
PCM stream | node + endpoint |
In the case where UCM (or another similar mechanism) is not available, ALSA cards are represented as PipeWire devices with only two profiles on/off.
When the on profile is activated, a node and an associated endpoint are created for every available PCM stream.
Endpoints in this case have only one "default" stream, unless they are extended by the session manager to have software-backed streams.
FIXME***
V4L2 | PipeWire |
---|---|
device | device + node |
PipeWire | PulseAudio |
---|---|
device | card |
device profile | card profile |
endpoint (associated with a device) | sink / source |
endpoint (associated with a client) | sink-input / source-output |
endpoint target | port |
endpoint stream | N/A, PA clients will be limited to the default stream |
PulseAudio | PipeWire |
---|---|
stream | client + node + endpoint (no targets, 1 default stream) |
Note: This section is about JACK clients connecting to PipeWire through the JACK compatibility library. The scenario where PipeWire connects to another JACK server as a client is out of scope here.
PipeWire | JACK |
---|---|
node | client |
port | port |
device | N/A |
endpoint | N/A |
JACK | PipeWire |
---|---|
client | client + node |
port | port |
JACK clients do not create endpoints. A session manager should be JACK aware in order to anticipate direct node linking.