PipeWire
1.6.4
Toggle main menu visibility
Loading...
Searching...
No Matches
buffers.h
Go to the documentation of this file.
1
/* PipeWire */
2
/* SPDX-FileCopyrightText: Copyright © 2019 Wim Taymans */
3
/* SPDX-License-Identifier: MIT */
4
5
#ifndef PIPEWIRE_BUFFERS_H
6
#define PIPEWIRE_BUFFERS_H
7
8
#include <
spa/node/node.h
>
9
10
#include <
pipewire/context.h
>
11
#include <
pipewire/mem.h
>
12
13
#ifdef __cplusplus
14
extern
"C"
{
15
#endif
16
20
25
26
#define PW_BUFFERS_FLAG_NONE 0
27
#define PW_BUFFERS_FLAG_NO_MEM (1<<0)
28
#define PW_BUFFERS_FLAG_SHARED (1<<1)
31
#define PW_BUFFERS_FLAG_DYNAMIC (1<<2)
32
#define PW_BUFFERS_FLAG_IN_PRIORITY (1<<4)
33
#define PW_BUFFERS_FLAG_ASYNC (1<<5)
34
35
struct
pw_buffers
{
36
struct
pw_memblock
*
mem
;
37
struct
spa_buffer
**
buffers
;
38
uint32_t
n_buffers
;
39
uint32_t
flags
;
40
};
41
42
int
pw_buffers_negotiate
(
struct
pw_context
*context, uint32_t flags,
43
struct
spa_node
*outnode, uint32_t out_port_id,
44
struct
spa_node
*innode, uint32_t in_port_id,
45
struct
pw_buffers
*result);
46
47
void
pw_buffers_clear
(
struct
pw_buffers
*
buffers
);
48
51
52
53
#ifdef __cplusplus
54
}
55
#endif
56
57
#endif
/* PIPEWIRE_BUFFERS_H */
pw_buffers_negotiate
int pw_buffers_negotiate(struct pw_context *context, uint32_t flags, struct spa_node *outnode, uint32_t out_port_id, struct spa_node *innode, uint32_t in_port_id, struct pw_buffers *result)
Definition
buffers.c:196
pw_buffers_clear
void pw_buffers_clear(struct pw_buffers *buffers)
Definition
buffers.c:390
node.h
spa/node/node.h
context.h
pipewire/context.h
mem.h
pipewire/mem.h
pw_buffers
Definition
buffers.h:45
pw_buffers::flags
uint32_t flags
flags
Definition
buffers.h:49
pw_buffers::n_buffers
uint32_t n_buffers
number of port buffers
Definition
buffers.h:48
pw_buffers::buffers
struct spa_buffer ** buffers
port buffers
Definition
buffers.h:47
pw_buffers::mem
struct pw_memblock * mem
allocated buffer memory
Definition
buffers.h:46
pw_context
pw_memblock
Memory block structure.
Definition
mem.h:72
spa_buffer
A Buffer.
Definition
buffer.h:110
spa_node
Definition
node.h:51
pipewire
buffers.h
Generated by
1.17.0