PipeWire 1.5.0
Loading...
Searching...
No Matches
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#include <spa/pod/parser.h>
9#include <spa/pod/iter.h>
10#include <spa/pod/builder.h>
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
23#ifndef SPA_API_AUDIO_RAW_UTILS
24 #ifdef SPA_API_IMPL
25 #define SPA_API_AUDIO_RAW_UTILS SPA_API_IMPL
26 #else
27 #define SPA_API_AUDIO_RAW_UTILS static inline
28 #endif
29#endif
30
32spa_format_audio_raw_parse(const struct spa_pod *format, struct spa_audio_info_raw *info)
33{
34 struct spa_pod *position = NULL;
35 int res;
36 info->flags = 0;
43 if (position == NULL ||
44 !spa_pod_copy_array(position, SPA_TYPE_Id, info->position, SPA_AUDIO_MAX_CHANNELS))
46
47 return res;
48}
49
51spa_format_audio_raw_build(struct spa_pod_builder *builder, uint32_t id,
52 const struct spa_audio_info_raw *info)
53{
54 struct spa_pod_frame f;
56 spa_pod_builder_add(builder,
59 0);
60 if (info->format != SPA_AUDIO_FORMAT_UNKNOWN)
61 spa_pod_builder_add(builder,
62 SPA_FORMAT_AUDIO_format, SPA_POD_Id(info->format), 0);
63 if (info->rate != 0)
64 spa_pod_builder_add(builder,
65 SPA_FORMAT_AUDIO_rate, SPA_POD_Int(info->rate), 0);
66 if (info->channels != 0) {
67 spa_pod_builder_add(builder,
68 SPA_FORMAT_AUDIO_channels, SPA_POD_Int(info->channels), 0);
71 SPA_POD_Array(sizeof(uint32_t), SPA_TYPE_Id,
72 info->channels, info->position), 0);
73 }
74 }
75 return (struct spa_pod*)spa_pod_builder_pop(builder, &f);
76}
77
82#ifdef __cplusplus
83} /* extern "C" */
84#endif
85
86#endif /* SPA_AUDIO_RAW_UTILS_H */
spa/pod/builder.h
uint32_t int int res
Definition core.h:433
#define SPA_AUDIO_FLAG_UNPOSITIONED
Definition raw.h:280
SPA_API_AUDIO_RAW_UTILS int spa_format_audio_raw_parse(const struct spa_pod *format, struct spa_audio_info_raw *info)
Definition raw-utils.h:39
#define SPA_API_AUDIO_RAW_UTILS
Definition raw-utils.h:34
#define SPA_AUDIO_MAX_CHANNELS
Definition raw.h:27
SPA_API_AUDIO_RAW_UTILS 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:58
@ SPA_MEDIA_TYPE_audio
Definition format.h:27
@ SPA_FORMAT_mediaType
media type (Id enum spa_media_type)
Definition format.h:99
@ SPA_FORMAT_AUDIO_position
channel positions (Id enum spa_audio_position)
Definition format.h:108
@ SPA_FORMAT_AUDIO_rate
sample rate (Int)
Definition format.h:106
@ SPA_FORMAT_mediaSubtype
media subtype (Id enum spa_media_subtype)
Definition format.h:100
@ SPA_FORMAT_AUDIO_format
audio format, (Id enum spa_audio_format)
Definition format.h:104
@ SPA_FORMAT_AUDIO_channels
number of audio channels (Int)
Definition format.h:107
@ SPA_MEDIA_SUBTYPE_raw
Definition format.h:38
@ SPA_AUDIO_FORMAT_UNKNOWN
Definition raw.h:30
SPA_API_POD_BUILDER void * spa_pod_builder_pop(struct spa_pod_builder *builder, struct spa_pod_frame *frame)
Definition builder.h:213
#define SPA_POD_Array(csize, ctype, n_vals, vals)
Definition vararg.h:128
SPA_API_POD_BUILDER int spa_pod_builder_add(struct spa_pod_builder *builder,...)
Definition builder.h:713
#define spa_pod_copy_array(pod, type, values, max_values)
Definition iter.h:226
#define SPA_POD_Id(val)
Definition vararg.h:53
SPA_API_POD_BUILDER 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:475
#define SPA_POD_OPT_Int(val)
Definition parser.h:865
#define SPA_POD_OPT_Id(val)
Definition parser.h:863
#define SPA_POD_OPT_Pod(val)
Definition parser.h:889
#define spa_pod_parse_object(pod, type, id,...)
Definition parser.h:934
#define SPA_POD_Int(val)
Definition vararg.h:58
@ SPA_TYPE_Id
Definition type.h:44
@ SPA_TYPE_OBJECT_Format
Definition type.h:87
#define SPA_FLAG_SET(field, flag)
Definition defs.h:93
#define SPA_FLAG_IS_SET(field, flag)
Definition defs.h:90
spa/pod/iter.h
spa/param/audio/format.h
spa/pod/parser.h
Audio information description.
Definition raw.h:282
Definition builder.h:63
Definition body.h:38
Definition pod.h:57