mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-08 13:30:08 -05:00
node: Add id to set_io
Make it possible to configure multiple io areas on a port by giving an id to set_io. Add some types to enumerate the supported ids Make an area to exchange buffers and one to specify pull ranges. The idea is to make more area types for controlable properties. Implement enumeration of IO areas in volume.
This commit is contained in:
parent
4288a634f4
commit
8efea3e1ea
40 changed files with 583 additions and 208 deletions
|
|
@ -56,8 +56,8 @@ struct pw_client_node_area {
|
|||
*/
|
||||
struct pw_client_node_transport {
|
||||
struct pw_client_node_area *area; /**< the transport area */
|
||||
struct spa_port_io *inputs; /**< array of input port io */
|
||||
struct spa_port_io *outputs; /**< array of output port io */
|
||||
struct spa_io_buffers *inputs; /**< array of buffer input io */
|
||||
struct spa_io_buffers *outputs; /**< array of buffer output io */
|
||||
void *input_data; /**< input memory for ringbuffer */
|
||||
struct spa_ringbuffer *input_buffer; /**< ringbuffer for input memory */
|
||||
void *output_data; /**< output memory for ringbuffer */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue