PipeWire  1.2.5
raw-utils.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_AUDIO_RAW_UTILS_H
6 #define SPA_AUDIO_RAW_UTILS_H
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
17 #include <spa/pod/parser.h>
18 #include <spa/pod/builder.h>
19 #include <spa/param/audio/format.h>
20 #include <spa/param/format-utils.h>
21 
22 static inline int
23 spa_format_audio_raw_parse(const struct spa_pod *format, struct spa_audio_info_raw *info)
24 {
25  struct spa_pod *position = NULL;
26  int res;
27  info->flags = 0;
28  res = spa_pod_parse_object(format,
34  if (position == NULL ||
37 
38  return res;
39 }
40 
41 static inline struct spa_pod *
42 spa_format_audio_raw_build(struct spa_pod_builder *builder, uint32_t id,
43  const struct spa_audio_info_raw *info)
44 {
45  struct spa_pod_frame f;
50  0);
51  if (info->format != SPA_AUDIO_FORMAT_UNKNOWN)
52  spa_pod_builder_add(builder,
54  if (info->rate != 0)
55  spa_pod_builder_add(builder,
57  if (info->channels != 0) {
58  spa_pod_builder_add(builder,
62  SPA_POD_Array(sizeof(uint32_t), SPA_TYPE_Id,
63  info->channels, info->position), 0);
64  }
65  }
66  return (struct spa_pod*)spa_pod_builder_pop(builder, &f);
67 }
68 
73 #ifdef __cplusplus
74 } /* extern "C" */
75 #endif
76 
77 #endif /* SPA_AUDIO_RAW_UTILS_H */
spa_pod_copy_array
static uint32_t spa_pod_copy_array(const struct spa_pod *pod, uint32_t type, void *values, uint32_t max_values)
Definition: iter.h:335
spa_audio_info_raw
Audio information description.
Definition: raw.h:284
spa_audio_info_raw::rate
uint32_t rate
Definition: raw.h:287
SPA_FORMAT_mediaType
@ SPA_FORMAT_mediaType
media type (Id enum spa_media_type)
Definition: format.h:93
SPA_POD_OPT_Id
#define SPA_POD_OPT_Id(val)
Definition: parser.h:520
format.h
spa/param/audio/format.h
SPA_POD_Array
#define SPA_POD_Array(csize, ctype, n_vals, vals)
Definition: vararg.h:120
SPA_POD_Int
#define SPA_POD_Int(val)
Definition: vararg.h:54
spa_format_audio_raw_parse
static int spa_format_audio_raw_parse(const struct spa_pod *format, struct spa_audio_info_raw *info)
Definition: raw-utils.h:28
spa_pod_builder_add
static int spa_pod_builder_add(struct spa_pod_builder *builder,...)
Definition: builder.h:647
format-utils.h
spa/param/format-utils.h
SPA_MEDIA_TYPE_audio
@ SPA_MEDIA_TYPE_audio
Definition: format.h:27
spa_audio_info_raw::format
enum spa_audio_format format
Definition: raw.h:285
SPA_POD_OPT_Int
#define SPA_POD_OPT_Int(val)
Definition: parser.h:522
spa_audio_info_raw::channels
uint32_t channels
Definition: raw.h:288
SPA_FLAG_SET
#define SPA_FLAG_SET(field, flag)
Definition: defs.h:93
spa_pod
Definition: pod.h:43
spa_pod_builder_pop
static void * spa_pod_builder_pop(struct spa_pod_builder *builder, struct spa_pod_frame *frame)
Definition: builder.h:168
SPA_AUDIO_MAX_CHANNELS
#define SPA_AUDIO_MAX_CHANNELS
Definition: raw.h:29
SPA_AUDIO_FORMAT_UNKNOWN
@ SPA_AUDIO_FORMAT_UNKNOWN
Definition: raw.h:32
SPA_FORMAT_AUDIO_rate
@ SPA_FORMAT_AUDIO_rate
sample rate (Int)
Definition: format.h:100
spa_audio_info_raw::flags
uint32_t flags
Definition: raw.h:286
SPA_FORMAT_mediaSubtype
@ SPA_FORMAT_mediaSubtype
media subtype (Id enum spa_media_subtype)
Definition: format.h:94
SPA_TYPE_Id
@ SPA_TYPE_Id
Definition: type.h:33
SPA_FLAG_IS_SET
#define SPA_FLAG_IS_SET(field, flag)
Definition: defs.h:90
spa_pod_frame
Definition: iter.h:27
spa_pod_parse_object
#define spa_pod_parse_object(pod, type, id,...)
Definition: parser.h:576
SPA_TYPE_OBJECT_Format
@ SPA_TYPE_OBJECT_Format
Definition: type.h:76
spa_format_audio_raw_build
static struct spa_pod * spa_format_audio_raw_build(struct spa_pod_builder *builder, uint32_t id, const struct spa_audio_info_raw *info)
Definition: raw-utils.h:47
spa_audio_info_raw::position
uint32_t position[SPA_AUDIO_MAX_CHANNELS]
Definition: raw.h:289
SPA_FORMAT_AUDIO_channels
@ SPA_FORMAT_AUDIO_channels
number of audio channels (Int)
Definition: format.h:101
parser.h
spa/pod/parser.h
spa_pod_builder_push_object
static int spa_pod_builder_push_object(struct spa_pod_builder *builder, struct spa_pod_frame *frame, uint32_t type, uint32_t id)
Definition: builder.h:435
SPA_FORMAT_AUDIO_format
@ SPA_FORMAT_AUDIO_format
audio format, (Id enum spa_audio_format)
Definition: format.h:98
SPA_FORMAT_AUDIO_position
@ SPA_FORMAT_AUDIO_position
channel positions (Id enum spa_audio_position)
Definition: format.h:102
SPA_AUDIO_FLAG_UNPOSITIONED
#define SPA_AUDIO_FLAG_UNPOSITIONED
Definition: raw.h:282
SPA_POD_OPT_Pod
#define SPA_POD_OPT_Pod(val)
Definition: parser.h:546
SPA_POD_Id
#define SPA_POD_Id(val)
Definition: vararg.h:49
spa_pod_builder
Definition: builder.h:53
SPA_MEDIA_SUBTYPE_raw
@ SPA_MEDIA_SUBTYPE_raw
Definition: format.h:38
builder.h
spa/pod/builder.h