PipeWire  0.3.64
format-utils.h
Go to the documentation of this file.
1 /* Simple Plugin API
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 SPA_PARAM_VIDEO_FORMAT_UTILS_H
26 #define SPA_PARAM_VIDEO_FORMAT_UTILS_H
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
36 #include <spa/pod/parser.h>
37 #include <spa/pod/builder.h>
38 #include <spa/param/video/format.h>
39 #include <spa/param/format-utils.h>
40 
41 static inline int
42 spa_format_video_raw_parse(const struct spa_pod *format,
43  struct spa_video_info_raw *info)
44 {
45  info->flags = SPA_VIDEO_FLAG_NONE;
46  if (spa_pod_find_prop (format, NULL, SPA_FORMAT_VIDEO_modifier)) {
48  }
49 
50  return spa_pod_parse_object(format,
67 }
68 
69 static inline int
70 spa_format_video_dsp_parse(const struct spa_pod *format,
71  struct spa_video_info_dsp *info)
72 {
73  info->flags = SPA_VIDEO_FLAG_NONE;
74  if (spa_pod_find_prop (format, NULL, SPA_FORMAT_VIDEO_modifier)) {
76  }
77 
78  return spa_pod_parse_object(format,
82 }
83 
84 static inline struct spa_pod *
85 spa_format_video_raw_build(struct spa_pod_builder *builder, uint32_t id,
86  struct spa_video_info_raw *info)
87 {
88  struct spa_pod_frame f;
93  0);
94  if (info->format != SPA_VIDEO_FORMAT_UNKNOWN)
95  spa_pod_builder_add(builder,
97  if (info->size.width != 0 && info->size.height != 0)
98  spa_pod_builder_add(builder,
100  if (info->framerate.denom != 0)
101  spa_pod_builder_add(builder,
103  if (info->modifier != 0 || info->flags & SPA_VIDEO_FLAG_MODIFIER)
104  spa_pod_builder_add(builder,
106  if (info->max_framerate.denom != 0)
107  spa_pod_builder_add(builder,
109  if (info->views != 0)
110  spa_pod_builder_add(builder,
112  if (info->interlace_mode != 0)
113  spa_pod_builder_add(builder,
115  if (info->pixel_aspect_ratio.denom != 0)
116  spa_pod_builder_add(builder,
118  if (info->multiview_mode != 0)
119  spa_pod_builder_add(builder,
121  if (info->multiview_flags != 0)
122  spa_pod_builder_add(builder,
124  if (info->chroma_site != 0)
125  spa_pod_builder_add(builder,
127  if (info->color_range != 0)
128  spa_pod_builder_add(builder,
130  if (info->color_matrix != 0)
131  spa_pod_builder_add(builder,
133  if (info->transfer_function != 0)
134  spa_pod_builder_add(builder,
136  if (info->color_primaries != 0)
137  spa_pod_builder_add(builder,
139  return (struct spa_pod*)spa_pod_builder_pop(builder, &f);
140 }
141 
142 static inline struct spa_pod *
143 spa_format_video_dsp_build(struct spa_pod_builder *builder, uint32_t id,
144  struct spa_video_info_dsp *info)
145 {
146  struct spa_pod_frame f;
151  0);
152  if (info->format != SPA_VIDEO_FORMAT_UNKNOWN)
153  spa_pod_builder_add(builder,
155  if (info->modifier != 0 || info->flags & SPA_VIDEO_FLAG_MODIFIER)
156  spa_pod_builder_add(builder,
158  return (struct spa_pod*)spa_pod_builder_pop(builder, &f);
159 }
160 
161 static inline int
162 spa_format_video_h264_parse(const struct spa_pod *format,
163  struct spa_video_info_h264 *info)
164 {
165  return spa_pod_parse_object(format,
172 }
173 
174 static inline struct spa_pod *
175 spa_format_video_h264_build(struct spa_pod_builder *builder, uint32_t id,
176  struct spa_video_info_h264 *info)
177 {
178  struct spa_pod_frame f;
183  0);
184  if (info->size.width != 0 && info->size.height != 0)
185  spa_pod_builder_add(builder,
187  if (info->framerate.denom != 0)
188  spa_pod_builder_add(builder,
190  if (info->max_framerate.denom != 0)
191  spa_pod_builder_add(builder,
193  if (info->stream_format != 0)
194  spa_pod_builder_add(builder,
196  if (info->alignment != 0)
197  spa_pod_builder_add(builder,
199  return (struct spa_pod*)spa_pod_builder_pop(builder, &f);
200 }
201 
202 static inline int
203 spa_format_video_mjpg_parse(const struct spa_pod *format,
204  struct spa_video_info_mjpg *info)
205 {
206  return spa_pod_parse_object(format,
211 }
212 
213 static inline struct spa_pod *
214 spa_format_video_mjpg_build(struct spa_pod_builder *builder, uint32_t id,
215  struct spa_video_info_mjpg *info)
216 {
217  struct spa_pod_frame f;
222  0);
223  if (info->size.width != 0 && info->size.height != 0)
224  spa_pod_builder_add(builder,
226  if (info->framerate.denom != 0)
227  spa_pod_builder_add(builder,
229  if (info->max_framerate.denom != 0)
230  spa_pod_builder_add(builder,
232  return (struct spa_pod*)spa_pod_builder_pop(builder, &f);
233 }
234 
239 #ifdef __cplusplus
240 } /* extern "C" */
241 #endif
242 
243 #endif /* SPA_PARAM_VIDEO_FORMAT_UTILS_H */
spa/pod/builder.h
static struct spa_pod * spa_format_video_dsp_build(struct spa_pod_builder *builder, uint32_t id, struct spa_video_info_dsp *info)
Definition: format-utils.h:148
static struct spa_pod * spa_format_video_mjpg_build(struct spa_pod_builder *builder, uint32_t id, struct spa_video_info_mjpg *info)
Definition: format-utils.h:219
static struct spa_pod * spa_format_video_raw_build(struct spa_pod_builder *builder, uint32_t id, struct spa_video_info_raw *info)
Definition: format-utils.h:90
static int spa_format_video_dsp_parse(const struct spa_pod *format, struct spa_video_info_dsp *info)
Definition: format-utils.h:75
static int spa_format_video_raw_parse(const struct spa_pod *format, struct spa_video_info_raw *info)
Definition: format-utils.h:47
static struct spa_pod * spa_format_video_h264_build(struct spa_pod_builder *builder, uint32_t id, struct spa_video_info_h264 *info)
Definition: format-utils.h:180
static int spa_format_video_h264_parse(const struct spa_pod *format, struct spa_video_info_h264 *info)
Definition: format-utils.h:167
static int spa_format_video_mjpg_parse(const struct spa_pod *format, struct spa_video_info_mjpg *info)
Definition: format-utils.h:208
@ SPA_MEDIA_TYPE_video
Definition: format.h:48
@ SPA_VIDEO_FLAG_MODIFIER
use the format modifier
Definition: raw.h:168
@ SPA_VIDEO_FLAG_NONE
no flags
Definition: raw.h:164
@ SPA_FORMAT_VIDEO_framerate
frame rate (Fraction)
Definition: format.h:131
@ SPA_FORMAT_VIDEO_H264_streamFormat
(Id enum spa_h264_stream_format)
Definition: format.h:145
@ SPA_FORMAT_mediaType
media type (Id enum spa_media_type)
Definition: format.h:109
@ SPA_FORMAT_VIDEO_size
size (Rectangle)
Definition: format.h:130
@ SPA_FORMAT_VIDEO_modifier
format modifier (Long) use only with DMA-BUF and omit for other buffer types
Definition: format.h:128
@ SPA_FORMAT_VIDEO_multiviewMode
(Id enum spa_video_multiview_mode)
Definition: format.h:136
@ SPA_FORMAT_VIDEO_interlaceMode
(Id enum spa_video_interlace_mode)
Definition: format.h:134
@ SPA_FORMAT_VIDEO_maxFramerate
maximum frame rate (Fraction)
Definition: format.h:132
@ SPA_FORMAT_VIDEO_pixelAspectRatio
(Rectangle)
Definition: format.h:135
@ SPA_FORMAT_VIDEO_colorMatrix
/Id enum spa_video_color_matrix)
Definition: format.h:140
@ SPA_FORMAT_VIDEO_format
video format (Id enum spa_video_format)
Definition: format.h:127
@ SPA_FORMAT_mediaSubtype
media subtype (Id enum spa_media_subtype)
Definition: format.h:110
@ SPA_FORMAT_VIDEO_chromaSite
/Id enum spa_video_chroma_site)
Definition: format.h:138
@ SPA_FORMAT_VIDEO_views
number of views (Int)
Definition: format.h:133
@ SPA_FORMAT_VIDEO_colorPrimaries
/Id enum spa_video_color_primaries)
Definition: format.h:142
@ SPA_FORMAT_VIDEO_transferFunction
/Id enum spa_video_transfer_function)
Definition: format.h:141
@ SPA_FORMAT_VIDEO_H264_alignment
(Id enum spa_h264_alignment)
Definition: format.h:146
@ SPA_FORMAT_VIDEO_colorRange
/Id enum spa_video_color_range)
Definition: format.h:139
@ SPA_FORMAT_VIDEO_multiviewFlags
(Id enum spa_video_multiview_flags)
Definition: format.h:137
@ SPA_MEDIA_SUBTYPE_h264
Definition: format.h:78
@ SPA_MEDIA_SUBTYPE_mjpg
Definition: format.h:79
@ SPA_MEDIA_SUBTYPE_dsp
Definition: format.h:59
@ SPA_MEDIA_SUBTYPE_raw
Definition: format.h:58
@ SPA_VIDEO_FORMAT_UNKNOWN
Definition: raw.h:64
#define SPA_POD_Fraction(val)
Definition: vararg.h:131
#define SPA_POD_OPT_Rectangle(val)
Definition: parser.h:556
static void * spa_pod_builder_pop(struct spa_pod_builder *builder, struct spa_pod_frame *frame)
Definition: builder.h:188
#define SPA_POD_Long(val)
Definition: vararg.h:85
static int spa_pod_builder_add(struct spa_pod_builder *builder,...)
Definition: builder.h:667
#define SPA_POD_OPT_Fraction(val)
Definition: parser.h:558
#define SPA_POD_Id(val)
Definition: vararg.h:69
#define SPA_POD_OPT_Int(val)
Definition: parser.h:542
static 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:428
#define SPA_POD_OPT_Id(val)
Definition: parser.h:540
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:455
#define SPA_POD_Rectangle(val)
Definition: vararg.h:122
#define spa_pod_parse_object(pod, type, id,...)
Definition: parser.h:596
#define SPA_POD_Int(val)
Definition: vararg.h:74
#define SPA_POD_OPT_Long(val)
Definition: parser.h:544
@ SPA_TYPE_OBJECT_Format
Definition: type.h:96
spa/param/video/format.h
spa/pod/parser.h
uint32_t denom
Definition: defs.h:141
Definition: builder.h:73
Definition: iter.h:47
Definition: pod.h:63
uint32_t width
Definition: defs.h:119
uint32_t height
Definition: defs.h:120
Definition: raw.h:221
uint32_t flags
Definition: raw.h:223
enum spa_video_format format
Definition: raw.h:222
uint64_t modifier
Definition: raw.h:224
Definition: encoded.h:57
enum spa_h264_alignment alignment
Definition: encoded.h:62
struct spa_rectangle size
Definition: encoded.h:58
struct spa_fraction framerate
Definition: encoded.h:59
enum spa_h264_stream_format stream_format
Definition: encoded.h:61
struct spa_fraction max_framerate
Definition: encoded.h:60
Definition: encoded.h:65
struct spa_fraction max_framerate
Definition: encoded.h:68
struct spa_fraction framerate
Definition: encoded.h:67
struct spa_rectangle size
Definition: encoded.h:66
Definition: raw.h:195
enum spa_video_color_primaries color_primaries
color primaries.
Definition: raw.h:215
enum spa_video_transfer_function transfer_function
the transfer function.
Definition: raw.h:214
enum spa_video_interlace_mode interlace_mode
the interlace mode
Definition: raw.h:205
struct spa_rectangle size
the frame size of the video
Definition: raw.h:200
enum spa_video_color_range color_range
the color range.
Definition: raw.h:210
struct spa_fraction pixel_aspect_ratio
the pixel aspect ratio
Definition: raw.h:206
enum spa_video_multiview_mode multiview_mode
multiview mode
Definition: raw.h:207
uint32_t views
the number of views in this video
Definition: raw.h:204
uint32_t flags
extra video flags
Definition: raw.h:197
uint64_t modifier
format modifier only used with DMA-BUF
Definition: raw.h:198
struct spa_fraction framerate
the framerate of the video, 0/1 means variable rate
Definition: raw.h:201
enum spa_video_multiview_flags multiview_flags
multiview flags
Definition: raw.h:208
enum spa_video_format format
the format
Definition: raw.h:196
enum spa_video_color_matrix color_matrix
the color matrix.
Definition: raw.h:212
struct spa_fraction max_framerate
the maximum framerate of the video.
Definition: raw.h:202
enum spa_video_chroma_site chroma_site
the chroma siting
Definition: raw.h:209