PipeWire  0.3.52
stream.h
Go to the documentation of this file.
1 /* PipeWire
2  *
3  * Copyright © 2018 Wim Taymans
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 
25 #ifndef PIPEWIRE_STREAM_H
26 #define PIPEWIRE_STREAM_H
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
179 struct pw_stream;
180 
181 #include <spa/buffer/buffer.h>
182 #include <spa/param/param.h>
184 
186 enum pw_stream_state {
187  PW_STREAM_STATE_ERROR = -1,
192 };
193 
196 struct pw_buffer {
197  struct spa_buffer *buffer;
198  void *user_data;
199  uint64_t size;
203  uint64_t requested;
208 };
209 
210 struct pw_stream_control {
211  const char *name;
212  uint32_t flags;
213  float def;
214  float min;
215  float max;
216  float *values;
217  uint32_t n_values;
218  uint32_t max_values;
219 };
220 
286 struct pw_time {
287  int64_t now;
293  struct spa_fraction rate;
295  uint64_t ticks;
298  int64_t delay;
307  uint64_t queued;
310  uint64_t buffered;
313  uint32_t queued_buffers;
314  uint32_t avail_buffers;
315 };
316 
317 #include <pipewire/port.h>
318 
321 struct pw_stream_events {
322 #define PW_VERSION_STREAM_EVENTS 2
323  uint32_t version;
324 
325  void (*destroy) (void *data);
327  void (*state_changed) (void *data, enum pw_stream_state old,
328  enum pw_stream_state state, const char *error);
329 
331  void (*control_info) (void *data, uint32_t id, const struct pw_stream_control *control);
332 
334  void (*io_changed) (void *data, uint32_t id, void *area, uint32_t size);
336  void (*param_changed) (void *data, uint32_t id, const struct spa_pod *param);
337 
339  void (*add_buffer) (void *data, struct pw_buffer *buffer);
341  void (*remove_buffer) (void *data, struct pw_buffer *buffer);
342 
347  void (*process) (void *data);
348 
350  void (*drained) (void *data);
351 
353  void (*command) (void *data, const struct spa_command *command);
354 
356  void (*trigger_done) (void *data);
357 };
358 
360 const char * pw_stream_state_as_string(enum pw_stream_state state);
361 
363 enum pw_stream_flags {
364  PW_STREAM_FLAG_NONE = 0,
365  PW_STREAM_FLAG_AUTOCONNECT = (1 << 0),
367  PW_STREAM_FLAG_INACTIVE = (1 << 1),
371  PW_STREAM_FLAG_DRIVER = (1 << 3),
378  PW_STREAM_FLAG_DONT_RECONNECT = (1 << 7),
388 };
389 
392 struct pw_stream *
393 pw_stream_new(struct pw_core *core,
394  const char *name,
395  struct pw_properties *props );
396 
397 struct pw_stream *
398 pw_stream_new_simple(struct pw_loop *loop,
399  const char *name,
400  struct pw_properties *props,
401  const struct pw_stream_events *events,
402  void *data );
403 
405 void pw_stream_destroy(struct pw_stream *stream);
406 
407 void pw_stream_add_listener(struct pw_stream *stream,
408  struct spa_hook *listener,
409  const struct pw_stream_events *events,
410  void *data);
411 
412 enum pw_stream_state pw_stream_get_state(struct pw_stream *stream, const char **error);
413 
414 const char *pw_stream_get_name(struct pw_stream *stream);
415 
416 struct pw_core *pw_stream_get_core(struct pw_stream *stream);
417 
418 const struct pw_properties *pw_stream_get_properties(struct pw_stream *stream);
419 
420 int pw_stream_update_properties(struct pw_stream *stream, const struct spa_dict *dict);
421 
427 int
428 pw_stream_connect(struct pw_stream *stream,
429  enum pw_direction direction,
430  uint32_t target_id,
433  enum pw_stream_flags flags,
434  const struct spa_pod **params,
437  uint32_t n_params );
438 
441 uint32_t
442 pw_stream_get_node_id(struct pw_stream *stream);
443 
445 int pw_stream_disconnect(struct pw_stream *stream);
446 
448 int pw_stream_set_error(struct pw_stream *stream,
449  int res,
450  const char *error,
451  ...) SPA_PRINTF_FUNC(3, 4);
452 
459 int
460 pw_stream_update_params(struct pw_stream *stream,
461  const struct spa_pod **params,
464  uint32_t n_params );
465 
467 const struct pw_stream_control *pw_stream_get_control(struct pw_stream *stream, uint32_t id);
468 
470 int pw_stream_set_control(struct pw_stream *stream, uint32_t id, uint32_t n_values, float *values, ...);
471 
473 int pw_stream_get_time_n(struct pw_stream *stream, struct pw_time *time, size_t size);
474 
478 int pw_stream_get_time(struct pw_stream *stream, struct pw_time *time);
479 
482 struct pw_buffer *pw_stream_dequeue_buffer(struct pw_stream *stream);
483 
485 int pw_stream_queue_buffer(struct pw_stream *stream, struct pw_buffer *buffer);
486 
488 int pw_stream_set_active(struct pw_stream *stream, bool active);
489 
492 int pw_stream_flush(struct pw_stream *stream, bool drain);
493 
498 bool pw_stream_is_driving(struct pw_stream *stream);
499 
502 int pw_stream_trigger_process(struct pw_stream *stream);
503 
508 #ifdef __cplusplus
509 }
510 #endif
511 
512 #endif /* PIPEWIRE_STREAM_H */
spa/buffer/buffer.h
#define pw_direction
The direction of a port.
Definition: port.h:63
pw_stream_flags
Extra flags that can be used in pw_stream_connect()
Definition: stream.h:369
int pw_stream_update_properties(struct pw_stream *stream, const struct spa_dict *dict)
Definition: stream.c:1671
enum pw_stream_state pw_stream_get_state(struct pw_stream *stream, const char **error)
Definition: stream.c:1651
int int pw_stream_update_params(struct pw_stream *stream, const struct spa_pod **params, uint32_t n_params)
Complete the negotiation process with result code res.
Definition: stream.c:2058
int pw_stream_connect(struct pw_stream *stream, enum pw_direction direction, uint32_t target_id, enum pw_stream_flags flags, const struct spa_pod **params, uint32_t n_params)
Connect a stream for input or output on port_path.
Definition: stream.c:1773
uint32_t pw_stream_get_node_id(struct pw_stream *stream)
Get the node ID of the stream.
Definition: stream.c:1994
int pw_stream_set_error(struct pw_stream *stream, int res, const char *error,...) 1(3
Set the stream in error state.
int pw_stream_set_control(struct pw_stream *stream, uint32_t id, uint32_t n_values, float *values,...)
Set control values.
Definition: stream.c:2076
struct pw_stream * pw_stream_new(struct pw_core *core, const char *name, struct pw_properties *props)
Create a new unconneced Stream.
Definition: stream.c:1498
bool pw_stream_is_driving(struct pw_stream *stream)
Check if the stream is driving.
Definition: stream.c:2319
const struct pw_stream_control * pw_stream_get_control(struct pw_stream *stream, uint32_t id)
Get control values.
Definition: stream.c:2136
int pw_stream_flush(struct pw_stream *stream, bool drain)
Flush a stream.
Definition: stream.c:2307
int pw_stream_get_time(struct pw_stream *stream, struct pw_time *time)
Query the time on the stream, deprecated since 0.3.50, use pw_stream_get_time_n() to get the fields a...
Definition: stream.c:2171
const char * pw_stream_get_name(struct pw_stream *stream)
Definition: stream.c:1659
struct pw_stream * pw_stream_new_simple(struct pw_loop *loop, const char *name, struct pw_properties *props, const struct pw_stream_events *events, void *data)
Definition: stream.c:1520
pw_stream_state
The state of a stream.
Definition: stream.h:191
int pw_stream_disconnect(struct pw_stream *stream)
Disconnect stream
Definition: stream.c:2000
int pw_stream_set_active(struct pw_stream *stream, bool active)
Activate or deactivate the stream.
Definition: stream.c:2150
struct pw_buffer * pw_stream_dequeue_buffer(struct pw_stream *stream)
Get a buffer that can be filled for playback streams or consumed for capture streams.
Definition: stream.c:2226
int pw_stream_trigger_process(struct pw_stream *stream)
Trigger a push/pull on the stream.
Definition: stream.c:2354
int pw_stream_queue_buffer(struct pw_stream *stream, struct pw_buffer *buffer)
Submit a buffer for playback or recycle a buffer for capture.
Definition: stream.c:2253
int pw_stream_get_time_n(struct pw_stream *stream, struct pw_time *time, size_t size)
Query the time on the stream.
Definition: stream.c:2177
void pw_stream_add_listener(struct pw_stream *stream, struct spa_hook *listener, const struct pw_stream_events *events, void *data)
Definition: stream.c:1635
const char * pw_stream_state_as_string(enum pw_stream_state state)
Convert a stream state to a readable string.
Definition: stream.c:1564
struct pw_core * pw_stream_get_core(struct pw_stream *stream)
Definition: stream.c:1695
void pw_stream_destroy(struct pw_stream *stream)
Destroy a stream.
Definition: stream.c:1582
const struct pw_properties * pw_stream_get_properties(struct pw_stream *stream)
Definition: stream.c:1665
@ PW_STREAM_FLAG_INACTIVE
start the stream inactive, pw_stream_set_active() needs to be called explicitly
Definition: stream.h:373
@ PW_STREAM_FLAG_MAP_BUFFERS
mmap the buffers except DmaBuf
Definition: stream.h:376
@ PW_STREAM_FLAG_DRIVER
be a driver
Definition: stream.h:377
@ PW_STREAM_FLAG_EXCLUSIVE
require exclusive access to the device
Definition: stream.h:382
@ PW_STREAM_FLAG_NO_CONVERT
don't convert format
Definition: stream.h:381
@ PW_STREAM_FLAG_TRIGGER
the output stream will not be scheduled automatically but _trigger_process() needs to be called.
Definition: stream.h:389
@ PW_STREAM_FLAG_DONT_RECONNECT
don't try to reconnect this stream when the sink/source is removed
Definition: stream.h:384
@ PW_STREAM_FLAG_AUTOCONNECT
try to automatically connect this stream
Definition: stream.h:371
@ PW_STREAM_FLAG_ALLOC_BUFFERS
the application will allocate buffer memory.
Definition: stream.h:386
@ PW_STREAM_FLAG_RT_PROCESS
call process from the realtime thread.
Definition: stream.h:378
@ PW_STREAM_FLAG_NONE
no flags
Definition: stream.h:370
@ PW_STREAM_STATE_PAUSED
paused
Definition: stream.h:195
@ PW_STREAM_STATE_CONNECTING
connection is in progress
Definition: stream.h:194
@ PW_STREAM_STATE_UNCONNECTED
unconnected
Definition: stream.h:193
@ PW_STREAM_STATE_ERROR
the stream is in error
Definition: stream.h:192
@ PW_STREAM_STATE_STREAMING
streaming
Definition: stream.h:196
#define SPA_DEPRECATED
Definition: defs.h:266
#define SPA_PRINTF_FUNC(fmt, arg1)
Definition: defs.h:260
spa/param/param.h
spa/pod/command.h
pipewire/port.h
a buffer structure obtained from pw_stream_dequeue_buffer().
Definition: stream.h:201
uint64_t size
This field is set by the user and the sum of all queued buffer is returned in the time info.
Definition: stream.h:204
uint64_t requested
For playback streams, this field contains the suggested amount of data to provide.
Definition: stream.h:208
struct spa_buffer * buffer
the spa buffer
Definition: stream.h:202
void * user_data
user data attached to the buffer
Definition: stream.h:203
Definition: loop.h:51
Definition: properties.h:53
struct spa_dict dict
dictionary of key/values
Definition: properties.h:54
uint32_t flags
extra flags
Definition: properties.h:55
Definition: stream.h:215
float max
max value
Definition: stream.h:220
uint32_t flags
extra flags (unused)
Definition: stream.h:217
float def
default value
Definition: stream.h:218
uint32_t max_values
max values that can be set on this control
Definition: stream.h:223
float min
min value
Definition: stream.h:219
uint32_t n_values
number of values in array
Definition: stream.h:222
float * values
array of values
Definition: stream.h:221
Events for a stream.
Definition: stream.h:326
void(* remove_buffer)(void *data, struct pw_buffer *buffer)
when a buffer was destroyed for this stream
Definition: stream.h:347
void(* control_info)(void *data, uint32_t id, const struct pw_stream_control *control)
Notify information about a control.
Definition: stream.h:337
void(* trigger_done)(void *data)
a trigger_process completed.
Definition: stream.h:362
void(* param_changed)(void *data, uint32_t id, const struct spa_pod *param)
when a parameter changed
Definition: stream.h:342
void(* process)(void *data)
when a buffer can be queued (for playback streams) or dequeued (for capture streams).
Definition: stream.h:353
void(* command)(void *data, const struct spa_command *command)
A command notify, Since 0.3.39:1.
Definition: stream.h:359
uint32_t version
Definition: stream.h:329
void(* state_changed)(void *data, enum pw_stream_state old, enum pw_stream_state state, const char *error)
when the stream state changes
Definition: stream.h:333
void(* drained)(void *data)
The stream is drained.
Definition: stream.h:356
void(* destroy)(void *data)
Definition: stream.h:331
void(* add_buffer)(void *data, struct pw_buffer *buffer)
when a new buffer was created for this stream
Definition: stream.h:345
void(* io_changed)(void *data, uint32_t id, void *area, uint32_t size)
when io changed on the stream.
Definition: stream.h:340
A time structure.
Definition: stream.h:291
int64_t delay
delay to device.
Definition: stream.h:303
struct spa_fraction rate
the rate of ticks and delay.
Definition: stream.h:298
uint64_t buffered
for audio/raw streams, this contains the extra number of samples buffered in the resampler.
Definition: stream.h:315
uint64_t queued
data queued in the stream, this is the sum of the size fields in the pw_buffer that are currently que...
Definition: stream.h:312
uint32_t queued_buffers
The number of buffers that are queued.
Definition: stream.h:318
uint64_t ticks
the ticks at now.
Definition: stream.h:300
int64_t now
the monotonic time in nanoseconds.
Definition: stream.h:292
uint32_t avail_buffers
The number of buffers that can be dequeued.
Definition: stream.h:319
A Buffer.
Definition: buffer.h:105
Definition: command.h:49
Definition: dict.h:59
Definition: defs.h:121
A hook, contains the structure with functions and the data passed to the functions.
Definition: hook.h:351
Definition: pod.h:63