PipeWire  0.3.67
video/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
9 extern "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 static inline int
22 spa_format_video_raw_parse(const struct spa_pod *format,
23  struct spa_video_info_raw *info)
24 {
25  info->flags = SPA_VIDEO_FLAG_NONE;
26  if (spa_pod_find_prop (format, NULL, SPA_FORMAT_VIDEO_modifier)) {
28  }
29 
30  return spa_pod_parse_object(format,
47 }
48 
49 static inline struct spa_pod *
50 spa_format_video_raw_build(struct spa_pod_builder *builder, uint32_t id,
51  struct spa_video_info_raw *info)
52 {
53  struct spa_pod_frame f;
58  0);
59  if (info->format != SPA_VIDEO_FORMAT_UNKNOWN)
60  spa_pod_builder_add(builder,
62  if (info->size.width != 0 && info->size.height != 0)
63  spa_pod_builder_add(builder,
65  if (info->framerate.denom != 0)
66  spa_pod_builder_add(builder,
68  if (info->modifier != 0 || info->flags & SPA_VIDEO_FLAG_MODIFIER)
69  spa_pod_builder_add(builder,
71  if (info->max_framerate.denom != 0)
72  spa_pod_builder_add(builder,
74  if (info->views != 0)
75  spa_pod_builder_add(builder,
77  if (info->interlace_mode != 0)
78  spa_pod_builder_add(builder,
80  if (info->pixel_aspect_ratio.denom != 0)
81  spa_pod_builder_add(builder,
83  if (info->multiview_mode != 0)
84  spa_pod_builder_add(builder,
86  if (info->multiview_flags != 0)
87  spa_pod_builder_add(builder,
89  if (info->chroma_site != 0)
90  spa_pod_builder_add(builder,
92  if (info->color_range != 0)
93  spa_pod_builder_add(builder,
95  if (info->color_matrix != 0)
96  spa_pod_builder_add(builder,
98  if (info->transfer_function != 0)
99  spa_pod_builder_add(builder,
101  if (info->color_primaries != 0)
102  spa_pod_builder_add(builder,
104  return (struct spa_pod*)spa_pod_builder_pop(builder, &f);
105 }
106 
111 #ifdef __cplusplus
112 } /* extern "C" */
113 #endif
114 
115 #endif /* SPA_VIDEO_RAW_UTILS_H */
spa/pod/builder.h
static struct spa_pod * spa_format_video_raw_build(struct spa_pod_builder *builder, uint32_t id, struct spa_video_info_raw *info)
Definition: video/raw-utils.h:55
static int spa_format_video_raw_parse(const struct spa_pod *format, struct spa_video_info_raw *info)
Definition: video/raw-utils.h:27
@ SPA_MEDIA_TYPE_video
Definition: param/format.h:28
@ SPA_VIDEO_FLAG_MODIFIER
use the format modifier
Definition: video/raw.h:148
@ SPA_VIDEO_FLAG_NONE
no flags
Definition: video/raw.h:144
@ SPA_FORMAT_VIDEO_framerate
frame rate (Fraction)
Definition: param/format.h:124
@ SPA_FORMAT_mediaType
media type (Id enum spa_media_type)
Definition: param/format.h:93
@ SPA_FORMAT_VIDEO_size
size (Rectangle)
Definition: param/format.h:123
@ SPA_FORMAT_VIDEO_modifier
format modifier (Long) use only with DMA-BUF and omit for other buffer types
Definition: param/format.h:121
@ SPA_FORMAT_VIDEO_multiviewMode
(Id enum spa_video_multiview_mode)
Definition: param/format.h:129
@ SPA_FORMAT_VIDEO_interlaceMode
(Id enum spa_video_interlace_mode)
Definition: param/format.h:127
@ SPA_FORMAT_VIDEO_maxFramerate
maximum frame rate (Fraction)
Definition: param/format.h:125
@ SPA_FORMAT_VIDEO_pixelAspectRatio
(Rectangle)
Definition: param/format.h:128
@ SPA_FORMAT_VIDEO_colorMatrix
/Id enum spa_video_color_matrix)
Definition: param/format.h:133
@ SPA_FORMAT_VIDEO_format
video format (Id enum spa_video_format)
Definition: param/format.h:120
@ SPA_FORMAT_mediaSubtype
media subtype (Id enum spa_media_subtype)
Definition: param/format.h:94
@ SPA_FORMAT_VIDEO_chromaSite
/Id enum spa_video_chroma_site)
Definition: param/format.h:131
@ SPA_FORMAT_VIDEO_views
number of views (Int)
Definition: param/format.h:126
@ SPA_FORMAT_VIDEO_colorPrimaries
/Id enum spa_video_color_primaries)
Definition: param/format.h:135
@ SPA_FORMAT_VIDEO_transferFunction
/Id enum spa_video_transfer_function)
Definition: param/format.h:134
@ SPA_FORMAT_VIDEO_colorRange
/Id enum spa_video_color_range)
Definition: param/format.h:132
@ SPA_FORMAT_VIDEO_multiviewFlags
(Id enum spa_video_multiview_flags)
Definition: param/format.h:130
@ SPA_MEDIA_SUBTYPE_raw
Definition: param/format.h:38
@ SPA_VIDEO_FORMAT_UNKNOWN
Definition: video/raw.h:44
#define SPA_POD_Fraction(val)
Definition: vararg.h:111
#define SPA_POD_OPT_Rectangle(val)
Definition: parser.h:536
static void * spa_pod_builder_pop(struct spa_pod_builder *builder, struct spa_pod_frame *frame)
Definition: builder.h:168
#define SPA_POD_Long(val)
Definition: vararg.h:65
static int spa_pod_builder_add(struct spa_pod_builder *builder,...)
Definition: builder.h:647
#define SPA_POD_OPT_Fraction(val)
Definition: parser.h:538
#define SPA_POD_Id(val)
Definition: vararg.h:49
#define SPA_POD_OPT_Int(val)
Definition: parser.h:522
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:408
#define SPA_POD_OPT_Id(val)
Definition: parser.h:520
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
#define SPA_POD_Rectangle(val)
Definition: vararg.h:102
#define spa_pod_parse_object(pod, type, id,...)
Definition: parser.h:576
#define SPA_POD_Int(val)
Definition: vararg.h:54
#define SPA_POD_OPT_Long(val)
Definition: parser.h:524
@ SPA_TYPE_OBJECT_Format
Definition: spa/include/spa/utils/type.h:76
spa/pod/parser.h
uint32_t denom
Definition: defs.h:125
Definition: builder.h:53
Definition: iter.h:27
Definition: pod/pod.h:43
uint32_t width
Definition: defs.h:103
uint32_t height
Definition: defs.h:104
Definition: video/raw.h:175
enum spa_video_color_primaries color_primaries
color primaries.
Definition: video/raw.h:195
enum spa_video_transfer_function transfer_function
the transfer function.
Definition: video/raw.h:194
enum spa_video_interlace_mode interlace_mode
the interlace mode
Definition: video/raw.h:185
struct spa_rectangle size
the frame size of the video
Definition: video/raw.h:180
enum spa_video_color_range color_range
the color range.
Definition: video/raw.h:190
struct spa_fraction pixel_aspect_ratio
the pixel aspect ratio
Definition: video/raw.h:186
enum spa_video_multiview_mode multiview_mode
multiview mode
Definition: video/raw.h:187
uint32_t views
the number of views in this video
Definition: video/raw.h:184
uint32_t flags
extra video flags
Definition: video/raw.h:177
uint64_t modifier
format modifier only used with DMA-BUF
Definition: video/raw.h:178
struct spa_fraction framerate
the framerate of the video, 0/1 means variable rate
Definition: video/raw.h:181
enum spa_video_multiview_flags multiview_flags
multiview flags
Definition: video/raw.h:188
enum spa_video_format format
the format
Definition: video/raw.h:176
enum spa_video_color_matrix color_matrix
the color matrix.
Definition: video/raw.h:192
struct spa_fraction max_framerate
the maximum framerate of the video.
Definition: video/raw.h:182
enum spa_video_chroma_site chroma_site
the chroma siting
Definition: video/raw.h:189
spa/param/video/raw.h