PipeWire  0.3.71
iec958.h
Go to the documentation of this file.
1 /* Simple Plugin API */
2 /* SPDX-FileCopyrightText: Copyright © 2021 Wim Taymans */
3 /* SPDX-License-Identifier: MIT */
4 
5 #ifndef SPA_AUDIO_IEC958_H
6 #define SPA_AUDIO_IEC958_H
7 
8 #include <stdint.h>
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
20 
28 
31 };
32 
33 struct spa_audio_info_iec958 {
34  enum spa_audio_iec958_codec codec; /*< format, one of the DSP formats in enum spa_audio_format_dsp */
35  uint32_t flags; /*< extra flags */
36  uint32_t rate; /*< sample rate */
37 };
38 
39 #define SPA_AUDIO_INFO_IEC958_INIT(...) ((struct spa_audio_info_iec958) { __VA_ARGS__ })
40 
45 #ifdef __cplusplus
46 } /* extern "C" */
47 #endif
48 
49 #endif /* SPA_AUDIO_IEC958_H */
Definition: iec958.h:27
uint32_t flags
Definition: iec958.h:40
uint32_t rate
Definition: iec958.h:41
Dolby TrueHD.
Definition: iec958.h:34
Definition: iec958.h:24
enum spa_audio_iec958_codec codec
Definition: iec958.h:39
Definition: iec958.h:38
MPEG-2 AAC.
Definition: iec958.h:30
Definition: iec958.h:26
Definition: iec958.h:32
DTS-HD Master Audio.
Definition: iec958.h:35
Definition: iec958.h:28
MPEG-1 or MPEG-2 (Part 3, not AAC)
Definition: iec958.h:29
spa_audio_iec958_codec
Definition: iec958.h:23