PipeWire
1.6.4
Toggle main menu visibility
Loading...
Searching...
No Matches
iec958-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_IEC958_UTILS_H
6
#define SPA_AUDIO_IEC958_UTILS_H
7
8
#include <
spa/pod/parser.h
>
9
#include <
spa/pod/builder.h
>
10
#include <
spa/param/audio/format.h
>
11
#include <
spa/param/format-utils.h
>
12
13
#ifdef __cplusplus
14
extern
"C"
{
15
#endif
16
21
22
#ifndef SPA_API_AUDIO_IEC958_UTILS
23
#ifdef SPA_API_IMPL
24
#define SPA_API_AUDIO_IEC958_UTILS SPA_API_IMPL
25
#else
26
#define SPA_API_AUDIO_IEC958_UTILS static inline
27
#endif
28
#endif
29
30
SPA_API_AUDIO_IEC958_UTILS
int
31
spa_format_audio_iec958_parse
(
const
struct
spa_pod
*format,
struct
spa_audio_info_iec958
*info)
32
{
33
int
res
;
34
res
=
spa_pod_parse_object
(format,
35
SPA_TYPE_OBJECT_Format
, NULL,
36
SPA_FORMAT_AUDIO_iec958Codec
,
SPA_POD_OPT_Id
(&info->codec),
37
SPA_FORMAT_AUDIO_rate
,
SPA_POD_OPT_Int
(&info->rate));
38
return
res
;
39
}
40
41
SPA_API_AUDIO_IEC958_UTILS
struct
spa_pod
*
42
spa_format_audio_iec958_build
(
struct
spa_pod_builder
*builder, uint32_t
id
,
43
const
struct
spa_audio_info_iec958
*info)
44
{
45
struct
spa_pod_frame
f;
46
spa_pod_builder_push_object
(builder, &f,
SPA_TYPE_OBJECT_Format
,
id
);
47
spa_pod_builder_add
(builder,
48
SPA_FORMAT_mediaType
,
SPA_POD_Id
(
SPA_MEDIA_TYPE_audio
),
49
SPA_FORMAT_mediaSubtype
,
SPA_POD_Id
(
SPA_MEDIA_SUBTYPE_iec958
),
50
0);
51
if
(info->codec !=
SPA_AUDIO_IEC958_CODEC_UNKNOWN
)
52
spa_pod_builder_add
(builder,
53
SPA_FORMAT_AUDIO_iec958Codec
,
SPA_POD_Id
(info->codec), 0);
54
if
(info->rate != 0)
55
spa_pod_builder_add
(builder,
56
SPA_FORMAT_AUDIO_rate
,
SPA_POD_Int
(info->rate), 0);
57
return
(
struct
spa_pod
*)
spa_pod_builder_pop
(builder, &f);
58
}
59
63
64
#ifdef __cplusplus
65
}
/* extern "C" */
66
#endif
67
68
#endif
/* SPA_AUDIO_IEC958_UTILS_H */
builder.h
spa/pod/builder.h
format-utils.h
res
uint32_t int int res
Definition
core.h:433
spa_format_audio_iec958_build
SPA_API_AUDIO_IEC958_UTILS struct spa_pod * spa_format_audio_iec958_build(struct spa_pod_builder *builder, uint32_t id, const struct spa_audio_info_iec958 *info)
Definition
iec958-utils.h:49
SPA_API_AUDIO_IEC958_UTILS
#define SPA_API_AUDIO_IEC958_UTILS
Definition
iec958-utils.h:33
spa_format_audio_iec958_parse
SPA_API_AUDIO_IEC958_UTILS int spa_format_audio_iec958_parse(const struct spa_pod *format, struct spa_audio_info_iec958 *info)
Definition
iec958-utils.h:38
SPA_MEDIA_TYPE_audio
@ SPA_MEDIA_TYPE_audio
Definition
format.h:27
SPA_AUDIO_IEC958_CODEC_UNKNOWN
@ SPA_AUDIO_IEC958_CODEC_UNKNOWN
Definition
iec958.h:24
SPA_FORMAT_AUDIO_iec958Codec
@ SPA_FORMAT_AUDIO_iec958Codec
codec used (IEC958) (Id enum spa_audio_iec958_codec)
Definition
format.h:110
SPA_FORMAT_mediaType
@ SPA_FORMAT_mediaType
media type (Id enum spa_media_type)
Definition
format.h:99
SPA_FORMAT_AUDIO_rate
@ SPA_FORMAT_AUDIO_rate
sample rate (Int)
Definition
format.h:106
SPA_FORMAT_mediaSubtype
@ SPA_FORMAT_mediaSubtype
media subtype (Id enum spa_media_subtype)
Definition
format.h:100
SPA_MEDIA_SUBTYPE_iec958
@ SPA_MEDIA_SUBTYPE_iec958
Definition
format.h:40
spa_pod_builder_pop
SPA_API_POD_BUILDER void * spa_pod_builder_pop(struct spa_pod_builder *builder, struct spa_pod_frame *frame)
Definition
builder.h:213
spa_pod_builder_add
SPA_API_POD_BUILDER int spa_pod_builder_add(struct spa_pod_builder *builder,...)
Definition
builder.h:713
SPA_POD_Id
#define SPA_POD_Id(val)
Definition
vararg.h:53
spa_pod_builder_push_object
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
SPA_POD_OPT_Int
#define SPA_POD_OPT_Int(val)
Definition
parser.h:866
SPA_POD_OPT_Id
#define SPA_POD_OPT_Id(val)
Definition
parser.h:864
spa_pod_parse_object
#define spa_pod_parse_object(pod, type, id,...)
Definition
parser.h:935
SPA_POD_Int
#define SPA_POD_Int(val)
Definition
vararg.h:58
SPA_TYPE_OBJECT_Format
@ SPA_TYPE_OBJECT_Format
Definition
type.h:87
format.h
spa/param/audio/format.h
parser.h
spa/pod/parser.h
spa_audio_info_iec958
Definition
iec958.h:38
spa_pod_builder
Definition
builder.h:63
spa_pod_frame
Definition
body.h:38
spa_pod
Definition
pod.h:57
spa
param
audio
iec958-utils.h
Generated by
1.17.0