PipeWire  1.6.4
dsp-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_DSP_UTILS_H
6 #define SPA_VIDEO_DSP_UTILS_H
7 
8 #include <spa/pod/iter.h>
9 #include <spa/pod/parser.h>
10 #include <spa/pod/builder.h>
11 #include <spa/param/video/dsp.h>
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
22 #ifndef SPA_API_VIDEO_DSP_UTILS
23  #ifdef SPA_API_IMPL
24  #define SPA_API_VIDEO_DSP_UTILS SPA_API_IMPL
25  #else
26  #define SPA_API_VIDEO_DSP_UTILS static inline
27  #endif
28 #endif
29 
31 spa_format_video_dsp_parse(const struct spa_pod *format,
32  struct spa_video_info_dsp *info)
33 {
34  info->flags = SPA_VIDEO_FLAG_NONE;
35  const struct spa_pod_prop *mod_prop;
36  if ((mod_prop = spa_pod_find_prop (format, NULL, SPA_FORMAT_VIDEO_modifier)) != NULL) {
40  }
41 
42  return spa_pod_parse_object(format,
46 }
47 
49 spa_format_video_dsp_build(struct spa_pod_builder *builder, uint32_t id,
50  const struct spa_video_info_dsp *info)
51 {
52  struct spa_pod_frame f;
54  spa_pod_builder_add(builder,
57  0);
58  if (info->format != SPA_VIDEO_FORMAT_UNKNOWN)
59  spa_pod_builder_add(builder,
61  if (info->modifier != 0 || info->flags & SPA_VIDEO_FLAG_MODIFIER) {
62  spa_pod_builder_prop(builder,
64  spa_pod_builder_long(builder, info->modifier);
65  }
66  return (struct spa_pod*)spa_pod_builder_pop(builder, &f);
67 }
68 
73 #ifdef __cplusplus
74 } /* extern "C" */
75 #endif
76 
77 #endif /* SPA_VIDEO_DSP_UTILS_H */
spa/pod/builder.h
SPA_API_VIDEO_DSP_UTILS struct spa_pod * spa_format_video_dsp_build(struct spa_pod_builder *builder, uint32_t id, const struct spa_video_info_dsp *info)
Definition: dsp-utils.h:56
#define SPA_API_VIDEO_DSP_UTILS
Definition: dsp-utils.h:33
SPA_API_VIDEO_DSP_UTILS int spa_format_video_dsp_parse(const struct spa_pod *format, struct spa_video_info_dsp *info)
Definition: dsp-utils.h:38
@ 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_mediaType
media type (Id enum spa_media_type)
Definition: format.h:99
@ SPA_FORMAT_VIDEO_modifier
format modifier (Long) use only with DMA-BUF and omit for other buffer types
Definition: format.h:131
@ SPA_FORMAT_VIDEO_format
video format (Id enum spa_video_format)
Definition: format.h:130
@ SPA_FORMAT_mediaSubtype
media subtype (Id enum spa_media_subtype)
Definition: format.h:100
@ SPA_MEDIA_SUBTYPE_dsp
Definition: format.h:39
@ SPA_VIDEO_FORMAT_UNKNOWN
Definition: raw.h:44
SPA_API_POD_BUILDER int spa_pod_builder_long(struct spa_pod_builder *builder, int64_t val)
Definition: builder.h:305
#define SPA_POD_PROP_FLAG_MANDATORY
is mandatory, when filtering, both sides need this property or filtering fails.
Definition: pod.h:241
SPA_API_POD_BUILDER int spa_pod_builder_add(struct spa_pod_builder *builder,...)
Definition: builder.h:713
#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_PROP_FLAG_DONT_FIXATE
choices need no fixation
Definition: pod.h:244
#define SPA_POD_OPT_Id(val)
Definition: parser.h:864
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:274
#define spa_pod_parse_object(pod, type, id,...)
Definition: parser.h:935
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_OPT_Long(val)
Definition: parser.h:868
SPA_API_POD_BUILDER int spa_pod_builder_prop(struct spa_pod_builder *builder, uint32_t key, uint32_t flags)
Definition: builder.h:490
@ SPA_TYPE_OBJECT_Format
Definition: type.h:87
spa/pod/iter.h
spa/pod/parser.h
Definition: builder.h:63
Definition: body.h:38
Definition: pod.h:227
uint32_t flags
flags for property
Definition: pod.h:248
Definition: pod.h:57
Definition: dsp.h:24
uint32_t flags
Definition: dsp.h:26
enum spa_video_format format
Definition: dsp.h:25
uint64_t modifier
Definition: dsp.h:27
spa/param/video/dsp.h