PipeWire  0.3.65
wma-utils.h
Go to the documentation of this file.
1 /* Simple Plugin API
2  *
3  * Copyright © 2023 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_AUDIO_WMA_UTILS_H
26 #define SPA_AUDIO_WMA_UTILS_H
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
37 #include <spa/pod/parser.h>
38 #include <spa/pod/builder.h>
39 #include <spa/param/audio/format.h>
40 #include <spa/param/format-utils.h>
41 
42 static inline int
43 spa_format_audio_wma_parse(const struct spa_pod *format, struct spa_audio_info_wma *info)
44 {
45  int res;
46  res = spa_pod_parse_object(format,
53  return res;
54 }
55 
56 static inline struct spa_pod *
57 spa_format_audio_wma_build(struct spa_pod_builder *builder, uint32_t id, struct spa_audio_info_wma *info)
58 {
59  struct spa_pod_frame f;
61  spa_pod_builder_add(builder,
65  0);
66  if (info->rate != 0)
67  spa_pod_builder_add(builder,
69  if (info->channels != 0)
70  spa_pod_builder_add(builder,
72  if (info->bitrate != 0)
73  spa_pod_builder_add(builder,
75  if (info->block_align != 0)
76  spa_pod_builder_add(builder,
78  if (info->profile != 0)
79  spa_pod_builder_add(builder,
81 
82  return (struct spa_pod*)spa_pod_builder_pop(builder, &f);
83 }
84 
89 #ifdef __cplusplus
90 } /* extern "C" */
91 #endif
92 
93 #endif /* SPA_AUDIO_WMA_UTILS_H */
#define SPA_POD_OPT_Id(val)
Definition: parser.h:540
spa/param/format-utils.h
#define SPA_POD_Int(val)
Definition: vararg.h:74
uint32_t channels
Definition: wma.h:54
bit rate (Int)
Definition: param/format.h:127
media type (Id enum spa_media_type)
Definition: param/format.h:112
static int spa_pod_builder_add(struct spa_pod_builder *builder,...)
Definition: builder.h:667
Definition: iter.h:47
Definition: audio/raw.h:53
spa/pod/parser.h
uint32_t bitrate
Definition: wma.h:55
#define SPA_POD_OPT_Int(val)
Definition: parser.h:542
media subtype (Id enum spa_media_subtype)
Definition: param/format.h:113
Definition: param/format.h:47
static void * spa_pod_builder_pop(struct spa_pod_builder *builder, struct spa_pod_frame *frame)
Definition: builder.h:188
static int spa_format_audio_wma_parse(const struct spa_pod *format, struct spa_audio_info_wma *info)
Definition: wma-utils.h:48
Definition: pod/pod.h:63
Definition: spa/include/spa/utils/type.h:96
#define spa_pod_parse_object(pod, type, id,...)
Definition: parser.h:596
Definition: param/format.h:67
static struct spa_pod * spa_format_audio_wma_build(struct spa_pod_builder *builder, uint32_t id, struct spa_audio_info_wma *info)
Definition: wma-utils.h:62
audio data block alignment (Int)
Definition: param/format.h:128
Definition: wma.h:52
sample rate (Int)
Definition: param/format.h:119
number of audio channels (Int)
Definition: param/format.h:120
spa/pod/builder.h
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
Definition: builder.h:73
uint32_t rate
Definition: wma.h:53
enum spa_audio_wma_profile profile
Definition: wma.h:57
audio format, (Id enum spa_audio_format)
Definition: param/format.h:117
WMA profile (Id enum spa_audio_wma_profile)
Definition: param/format.h:132
uint32_t block_align
Definition: wma.h:56
#define SPA_POD_Id(val)
Definition: vararg.h:69
spa/param/audio/format.h