PipeWire  0.3.67
opus.h
1 /* Simple Plugin API */
2 /* SPDX-FileCopyrightText: Copyright © 2023 Wim Taymans */
3 /* SPDX-License-Identifier: MIT */
4 
5 #ifndef SPA_AUDIO_OPUS_H
6 #define SPA_AUDIO_OPUS_H
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11 
12 #include <spa/param/audio/raw.h>
13 
14 struct spa_audio_info_opus {
15  uint32_t rate; /*< sample rate */
16  uint32_t channels; /*< number of channels */
17 };
18 
19 #define SPA_AUDIO_INFO_OPUS_INIT(...) ((struct spa_audio_info_opus) { __VA_ARGS__ })
20 
25 #ifdef __cplusplus
26 } /* extern "C" */
27 #endif
28 
29 #endif /* SPA_AUDIO_OPUS_H */
spa/param/audio/raw.h
Definition: opus.h:18
uint32_t channels
Definition: opus.h:20
uint32_t rate
Definition: opus.h:19