PipeWire 1.4.1
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
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_VIDEO_RAW_UTILS_H
6#define SPA_VIDEO_RAW_UTILS_H
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
17#include <spa/pod/parser.h>
18#include <spa/pod/builder.h>
19#include <spa/param/video/raw.h>
20
21#ifndef SPA_API_VIDEO_RAW_UTILS
22 #ifdef SPA_API_IMPL
23 #define SPA_API_VIDEO_RAW_UTILS SPA_API_IMPL
24 #else
25 #define SPA_API_VIDEO_RAW_UTILS static inline
26 #endif
27#endif
28
30spa_format_video_raw_parse(const struct spa_pod *format,
31 struct spa_video_info_raw *info)
33 info->flags = SPA_VIDEO_FLAG_NONE;
34 const struct spa_pod_prop *mod_prop;
35 if ((mod_prop = spa_pod_find_prop (format, NULL, SPA_FORMAT_VIDEO_modifier)) != NULL) {
36 info->flags |= SPA_VIDEO_FLAG_MODIFIER;
39 }
40
41 return spa_pod_parse_object(format,
49 SPA_FORMAT_VIDEO_interlaceMode, SPA_POD_OPT_Id(&info->interlace_mode),
51 SPA_FORMAT_VIDEO_multiviewMode, SPA_POD_OPT_Id(&info->multiview_mode),
52 SPA_FORMAT_VIDEO_multiviewFlags, SPA_POD_OPT_Id(&info->multiview_flags),
55 SPA_FORMAT_VIDEO_colorMatrix, SPA_POD_OPT_Id(&info->color_matrix),
56 SPA_FORMAT_VIDEO_transferFunction, SPA_POD_OPT_Id(&info->transfer_function),
57 SPA_FORMAT_VIDEO_colorPrimaries, SPA_POD_OPT_Id(&info->color_primaries));
58}
59
61spa_format_video_raw_build(struct spa_pod_builder *builder, uint32_t id,
62 const struct spa_video_info_raw *info)
63{
64 struct spa_pod_frame f;
66 spa_pod_builder_add(builder,
69 0);
70 if (info->format != SPA_VIDEO_FORMAT_UNKNOWN)
71 spa_pod_builder_add(builder,
72 SPA_FORMAT_VIDEO_format, SPA_POD_Id(info->format), 0);
73 if (info->size.width != 0 && info->size.height != 0)
74 spa_pod_builder_add(builder,
76 if (info->framerate.denom != 0)
77 spa_pod_builder_add(builder,
78 SPA_FORMAT_VIDEO_framerate, SPA_POD_Fraction(&info->framerate), 0);
79 if (info->modifier != 0 || info->flags & SPA_VIDEO_FLAG_MODIFIER) {
82 spa_pod_builder_long(builder, info->modifier);
83 }
84 if (info->max_framerate.denom != 0)
85 spa_pod_builder_add(builder,
86 SPA_FORMAT_VIDEO_maxFramerate, SPA_POD_Fraction(&info->max_framerate), 0);
87 if (info->views != 0)
88 spa_pod_builder_add(builder,
89 SPA_FORMAT_VIDEO_views, SPA_POD_Int(info->views), 0);
90 if (info->interlace_mode != 0)
91 spa_pod_builder_add(builder,
92 SPA_FORMAT_VIDEO_interlaceMode, SPA_POD_Id(info->interlace_mode), 0);
93 if (info->pixel_aspect_ratio.denom != 0)
94 spa_pod_builder_add(builder,
95 SPA_FORMAT_VIDEO_pixelAspectRatio, SPA_POD_Fraction(&info->pixel_aspect_ratio), 0);
96 if (info->multiview_mode != 0)
97 spa_pod_builder_add(builder,
98 SPA_FORMAT_VIDEO_multiviewMode, SPA_POD_Id(info->multiview_mode), 0);
99 if (info->multiview_flags != 0)
100 spa_pod_builder_add(builder,
101 SPA_FORMAT_VIDEO_multiviewFlags,SPA_POD_Id(info->multiview_flags), 0);
102 if (info->chroma_site != 0)
103 spa_pod_builder_add(builder,
104 SPA_FORMAT_VIDEO_chromaSite, SPA_POD_Id(info->chroma_site), 0);
105 if (info->color_range != 0)
106 spa_pod_builder_add(builder,
107 SPA_FORMAT_VIDEO_colorRange, SPA_POD_Id(info->color_range), 0);
108 if (info->color_matrix != 0)
109 spa_pod_builder_add(builder,
110 SPA_FORMAT_VIDEO_colorMatrix, SPA_POD_Id(info->color_matrix), 0);
111 if (info->transfer_function != 0)
112 spa_pod_builder_add(builder,
113 SPA_FORMAT_VIDEO_transferFunction,SPA_POD_Id(info->transfer_function), 0);
114 if (info->color_primaries != 0)
115 spa_pod_builder_add(builder,
116 SPA_FORMAT_VIDEO_colorPrimaries,SPA_POD_Id(info->color_primaries), 0);
117 return (struct spa_pod*)spa_pod_builder_pop(builder, &f);
118}
119
124#ifdef __cplusplus
125} /* extern "C" */
126#endif
127
128#endif /* SPA_VIDEO_RAW_UTILS_H */
spa/pod/builder.h
SPA_API_VIDEO_RAW_UTILS int spa_format_video_raw_parse(const struct spa_pod *format, struct spa_video_info_raw *info)
Definition raw-utils.h:37
SPA_API_VIDEO_RAW_UTILS struct spa_pod * spa_format_video_raw_build(struct spa_pod_builder *builder, uint32_t id, const struct spa_video_info_raw *info)
Definition raw-utils.h:68
#define SPA_API_VIDEO_RAW_UTILS
Definition raw-utils.h:32
@ SPA_MEDIA_TYPE_video
Definition format.h:28
@ SPA_VIDEO_FLAG_MODIFIER_FIXATION_REQUIRED
format modifier was not fixated yet
Definition raw.h:149
@ SPA_VIDEO_FLAG_MODIFIER
use the format modifier
Definition raw.h:148
@ SPA_VIDEO_FLAG_NONE
no flags
Definition raw.h:144
@ SPA_FORMAT_VIDEO_framerate
frame rate (Fraction)
Definition format.h:124
@ SPA_FORMAT_mediaType
media type (Id enum spa_media_type)
Definition format.h:93
@ SPA_FORMAT_VIDEO_size
size (Rectangle)
Definition format.h:123
@ SPA_FORMAT_VIDEO_modifier
format modifier (Long) use only with DMA-BUF and omit for other buffer types
Definition format.h:121
@ SPA_FORMAT_VIDEO_multiviewMode
(Id enum spa_video_multiview_mode)
Definition format.h:129
@ SPA_FORMAT_VIDEO_interlaceMode
(Id enum spa_video_interlace_mode)
Definition format.h:127
@ SPA_FORMAT_VIDEO_maxFramerate
maximum frame rate (Fraction)
Definition format.h:125
@ SPA_FORMAT_VIDEO_pixelAspectRatio
(Rectangle)
Definition format.h:128
@ SPA_FORMAT_VIDEO_colorMatrix
/Id enum spa_video_color_matrix)
Definition format.h:133
@ SPA_FORMAT_VIDEO_format
video format (Id enum spa_video_format)
Definition format.h:120
@ SPA_FORMAT_mediaSubtype
media subtype (Id enum spa_media_subtype)
Definition format.h:94
@ SPA_FORMAT_VIDEO_chromaSite
/Id enum spa_video_chroma_site)
Definition format.h:131
@ SPA_FORMAT_VIDEO_views
number of views (Int)
Definition format.h:126
@ SPA_FORMAT_VIDEO_colorPrimaries
/Id enum spa_video_color_primaries)
Definition format.h:135
@ SPA_FORMAT_VIDEO_transferFunction
/Id enum spa_video_transfer_function)
Definition format.h:134
@ SPA_FORMAT_VIDEO_colorRange
/Id enum spa_video_color_range)
Definition format.h:132
@ SPA_FORMAT_VIDEO_multiviewFlags
(Id enum spa_video_multiview_flags)
Definition format.h:130
@ SPA_MEDIA_SUBTYPE_raw
Definition format.h:38
@ SPA_VIDEO_FORMAT_UNKNOWN
Definition raw.h:44
SPA_API_POD_BUILDER void * spa_pod_builder_pop(struct spa_pod_builder *builder, struct spa_pod_frame *frame)
Definition builder.h:187
SPA_API_POD_BUILDER int spa_pod_builder_long(struct spa_pod_builder *builder, int64_t val)
Definition builder.h:275
#define SPA_POD_Fraction(val)
Definition vararg.h:111
#define SPA_POD_OPT_Rectangle(val)
Definition parser.h:546
SPA_API_POD_ITER const struct spa_pod_prop * spa_pod_find_prop(const struct spa_pod *pod, const struct spa_pod_prop *start, uint32_t key)
Definition iter.h:424
#define SPA_POD_PROP_FLAG_MANDATORY
is mandatory
Definition pod.h:222
#define SPA_POD_OPT_Fraction(val)
Definition parser.h:548
SPA_API_POD_BUILDER int spa_pod_builder_add(struct spa_pod_builder *builder,...)
Definition builder.h:666
#define SPA_POD_Id(val)
Definition vararg.h:49
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:454
#define SPA_POD_PROP_FLAG_DONT_FIXATE
choices need no fixation
Definition pod.h:224
#define SPA_POD_OPT_Int(val)
Definition parser.h:532
#define SPA_POD_OPT_Id(val)
Definition parser.h:530
#define SPA_POD_Rectangle(val)
Definition vararg.h:102
#define spa_pod_parse_object(pod, type, id,...)
Definition parser.h:586
#define SPA_POD_Int(val)
Definition vararg.h:54
#define SPA_POD_OPT_Long(val)
Definition parser.h:534
SPA_API_POD_BUILDER int spa_pod_builder_prop(struct spa_pod_builder *builder, uint32_t key, uint32_t flags)
Definition builder.h:469
@ SPA_TYPE_OBJECT_Format
Definition type.h:87
spa/pod/parser.h
Definition builder.h:63
Definition iter.h:37
Definition pod.h:208
uint32_t flags
flags for property
Definition pod.h:225
Definition pod.h:43
Definition raw.h:176
spa/param/video/raw.h