PipeWire  1.4.11
io.h
Go to the documentation of this file.
1 /* Simple Plugin API */
2 /* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
3 /* SPDX-License-Identifier: MIT */
4 
5 #ifndef SPA_IO_H
6 #define SPA_IO_H
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
17 #include <spa/utils/defs.h>
18 #include <spa/pod/pod.h>
19 
31 enum spa_io_type {
34  SPA_IO_Range,
35  SPA_IO_Clock,
44 };
45 
75 struct spa_io_buffers {
76 #define SPA_STATUS_OK 0
77 #define SPA_STATUS_NEED_DATA (1<<0)
78 #define SPA_STATUS_HAVE_DATA (1<<1)
79 #define SPA_STATUS_STOPPED (1<<2)
80 #define SPA_STATUS_DRAINED (1<<3)
81  int32_t status;
82  uint32_t buffer_id;
83 };
84 
85 #define SPA_IO_BUFFERS_INIT ((struct spa_io_buffers) { SPA_STATUS_OK, SPA_ID_INVALID, })
86 
90 struct spa_io_memory {
91  int32_t status;
92  uint32_t size;
93  void *data;
94 };
95 #define SPA_IO_MEMORY_INIT ((struct spa_io_memory) { SPA_STATUS_OK, 0, NULL, })
96 
98 struct spa_io_range {
99  uint64_t offset;
100  uint32_t min_size;
101  uint32_t max_size;
102 };
127 struct spa_io_clock {
128 #define SPA_IO_CLOCK_FLAG_FREEWHEEL (1u<<0) /* graph is freewheeling */
129 #define SPA_IO_CLOCK_FLAG_XRUN_RECOVER (1u<<1) /* recovering from xrun */
130 #define SPA_IO_CLOCK_FLAG_LAZY (1u<<2) /* lazy scheduling */
131 #define SPA_IO_CLOCK_FLAG_NO_RATE (1u<<3) /* the rate of the clock is only approximately.
132  * it is recommended to use the nsec as a clock source.
133  * The rate_diff contains the measured inaccuracy. */
134  uint32_t flags;
135  uint32_t id;
136  char name[64];
139  uint64_t nsec;
142  struct spa_fraction rate;
143  uint64_t position;
144  uint64_t duration;
145  int64_t delay;
146  double rate_diff;
148  uint64_t next_nsec;
153  struct spa_fraction target_rate;
154  uint64_t target_duration;
155  uint32_t target_seq;
157  uint32_t cycle;
158  uint64_t xrun;
159 };
161 /* the size of the video in this cycle */
163 #define SPA_IO_VIDEO_SIZE_VALID (1<<0)
164  uint32_t flags;
165  uint32_t stride;
166  struct spa_rectangle size;
167  struct spa_fraction framerate;
170  uint32_t padding[4];
171 };
172 
179  struct spa_fraction rate;
180  uint64_t min;
181  uint64_t max;
182 };
185 struct spa_io_sequence {
186  struct spa_pod_sequence sequence;
187 };
188 
190 struct spa_io_segment_bar {
191 #define SPA_IO_SEGMENT_BAR_FLAG_VALID (1<<0)
192  uint32_t flags;
193  uint32_t offset;
194  float signature_num;
196  double bpm;
197  double beat;
199  double ticks_per_beat;
200  uint32_t padding[4];
201 };
204 struct spa_io_segment_video {
205 #define SPA_IO_SEGMENT_VIDEO_FLAG_VALID (1<<0)
206 #define SPA_IO_SEGMENT_VIDEO_FLAG_DROP_FRAME (1<<1)
207 #define SPA_IO_SEGMENT_VIDEO_FLAG_PULL_DOWN (1<<2)
208 #define SPA_IO_SEGMENT_VIDEO_FLAG_INTERLACED (1<<3)
209  uint32_t flags;
210  uint32_t offset;
212  uint32_t hours;
213  uint32_t minutes;
214  uint32_t seconds;
215  uint32_t frames;
216  uint32_t field_count;
217  uint32_t padding[11];
218 };
219 
240 struct spa_io_segment {
241  uint32_t version;
242 #define SPA_IO_SEGMENT_FLAG_LOOPING (1<<0)
243 #define SPA_IO_SEGMENT_FLAG_NO_POSITION (1<<1)
247  uint32_t flags;
248  uint64_t start;
252  uint64_t duration;
257  double rate;
259  uint64_t position;
263  struct spa_io_segment_bar bar;
265 };
266 
271 };
272 
274 #define SPA_IO_POSITION_MAX_SEGMENTS 8
275 
293 struct spa_io_position {
297  int64_t offset;
302  uint32_t state;
304  uint32_t n_segments;
306 };
307 
342 struct spa_io_rate_match {
343  uint32_t delay;
345  uint32_t size;
346  double rate;
347 #define SPA_IO_RATE_MATCH_FLAG_ACTIVE (1 << 0)
348  uint32_t flags;
349  int32_t delay_frac;
351  uint32_t padding[6];
352 };
353 
355 struct spa_io_async_buffers {
356  struct spa_io_buffers buffers[2];
358 };
359 
364 #ifdef __cplusplus
365 } /* extern "C" */
366 #endif
367 
368 #endif /* SPA_IO_H */
double rate_diff
Rate difference between clock and monotonic time, as a ratio of clock speeds.
Definition: io.h:162
A range, suitable for input ports that can suggest a range to output ports.
Definition: io.h:110
uint32_t max_size
maximum size of data
Definition: io.h:113
area to exchange buffers, struct spa_io_buffers
Definition: io.h:38
struct spa_fraction rate
rate for min/max
Definition: io.h:196
uint32_t min_size
minimum size of data
Definition: io.h:112
uint32_t size
the size of data
Definition: io.h:103
int64_t offset
an offset to subtract from the clock position to get a running time.
Definition: io.h:325
float signature_denom
time signature denominator
Definition: io.h:213
Latency reporting.
Definition: io.h:195
int32_t status
the status code
Definition: io.h:91
uint32_t minutes
Definition: io.h:235
async buffers
Definition: io.h:384
float signature_num
time signature numerator
Definition: io.h:212
area to update clock information, struct spa_io_clock
Definition: io.h:40
int32_t delay_frac
resampling delay fractional part, in units of nanosamples (1/10^9 sample) at node rate ...
Definition: io.h:378
struct spa_pod_sequence sequence
sequence of timed events
Definition: io.h:203
uint32_t flags
optional flags
Definition: io.h:181
latency reporting, struct spa_io_latency (currently not used in PipeWire).
Definition: io.h:41
struct spa_fraction framerate
the minimum framerate, the cycle duration is always smaller to ensure there is only one video frame p...
Definition: io.h:184
uint64_t next_nsec
Estimated next wakeup time in nanoseconds.
Definition: io.h:164
IO area to exchange buffers.
Definition: io.h:80
#define SPA_IO_POSITION_MAX_SEGMENTS
the maximum number of segments visible in the future
Definition: io.h:302
uint64_t offset
offset in range
Definition: io.h:111
async area to exchange buffers, struct spa_io_async_buffers
Definition: io.h:48
uint32_t id
Unique clock id, set by host application.
Definition: io.h:151
void * data
a memory pointer
Definition: io.h:104
uint64_t duration
Duration of current cycle, in samples @ rate.
Definition: io.h:160
Absolute time reporting.
Definition: io.h:139
spa/utils/defs.h
Definition: io.h:178
uint32_t padding[4]
Definition: io.h:187
uint32_t target_seq
Seq counter.
Definition: io.h:171
uint32_t flags
flags
Definition: io.h:231
double ticks_per_beat
Definition: io.h:217
area for notify messages, struct spa_io_sequence
Definition: io.h:44
uint32_t field_count
0 for progressive, 1 and 2 for interlaced
Definition: io.h:238
Definition: defs.h:116
uint32_t frames
Definition: io.h:237
uint32_t padding[6]
Definition: io.h:380
int64_t delay
Delay between position and hardware, in samples @ rate.
Definition: io.h:161
Definition: defs.h:137
struct spa_io_clock clock
clock position of driver, always valid and read only
Definition: io.h:322
uint32_t delay
resampling delay, in samples at node rate
Definition: io.h:371
struct spa_fraction target_rate
Target rate of next cycle.
Definition: io.h:169
uint32_t seconds
Definition: io.h:236
uint32_t size
requested input size for resampler
Definition: io.h:373
Rate matching.
Definition: io.h:370
double beat
current beat in segment
Definition: io.h:215
uint32_t hours
Definition: io.h:234
control stream, io area for SPA_IO_Control and SPA_IO_Notify
Definition: io.h:202
uint64_t target_duration
Target duration of next cycle.
Definition: io.h:170
uint64_t position
Current position, in samples @ rate.
Definition: io.h:159
struct spa_fraction rate
Rate for position/duration/delay/xrun.
Definition: io.h:158
uint32_t stride
video stride in bytes
Definition: io.h:182
uint32_t cycle
incremented each time the graph is started
Definition: io.h:173
area for control messages, struct spa_io_sequence
Definition: io.h:43
double rate
rate for resampler (set by node)
Definition: io.h:374
struct spa_rectangle size
the video size
Definition: io.h:183
struct spa_io_segment segments[SPA_IO_POSITION_MAX_SEGMENTS]
segments
Definition: io.h:333
Definition: io.h:37
uint32_t state
one of enum spa_io_position_state
Definition: io.h:330
rate matching between nodes, struct spa_io_rate_match
Definition: io.h:46
uint32_t offset
offset in segment
Definition: io.h:232
memory pointer, struct spa_io_memory (currently not used in PipeWire)
Definition: io.h:47
double bar_start_tick
Definition: io.h:216
struct spa_io_video_size video
size of the video in the current cycle
Definition: io.h:324
The position information adds extra meaning to the raw clock times.
Definition: io.h:321
bar and beat segment
Definition: io.h:207
uint32_t offset
offset in segment of this beat
Definition: io.h:211
spa_io_type
IO areas.
Definition: io.h:36
struct spa_io_segment_video video
Definition: io.h:291
uint64_t max
max latency
Definition: io.h:198
double bpm
beats per minute
Definition: io.h:214
Definition: io.h:297
uint32_t flags
extra flags
Definition: io.h:210
position information in the graph, struct spa_io_position
Definition: io.h:45
A segment converts a running time to a segment (stream) position.
Definition: io.h:262
expected byte range, struct spa_io_range (currently not used in PipeWire)
Definition: io.h:39
struct spa_fraction framerate
Definition: io.h:233
uint32_t version
Definition: io.h:263
video frame segment
Definition: io.h:222
uint64_t min
min latency
Definition: io.h:197
spa/pod/pod.h
spa_io_position_state
Definition: io.h:294
uint32_t flags
Clock flags.
Definition: io.h:150
uint64_t nsec
Time in nanoseconds against monotonic clock (CLOCK_MONOTONIC).
Definition: io.h:155
uint32_t padding[4]
Definition: io.h:218
uint64_t xrun
Estimated accumulated xrun duration.
Definition: io.h:174
uint32_t n_segments
number of segments
Definition: io.h:332
uint32_t padding[11]
Definition: io.h:239
Definition: io.h:295
uint32_t flags
extra flags (set by node)
Definition: io.h:377
IO area to exchange a memory region.
Definition: io.h:101
struct spa_io_buffers buffers[2]
async buffers, writers write to current (cycle+1)&1, readers read from (cycle)&1
Definition: io.h:385
Definition: io.h:296
a sequence of timed controls
Definition: pod.h:252
uint32_t buffer_id
a buffer id
Definition: io.h:92