PipeWire 1.0.5
Loading...
Searching...
No Matches
dsp.h
1/* Simple Plugin API */
2/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
3/* SPDX-License-Identifier: MIT */
4
5#ifndef SPA_AUDIO_DSP_H
6#define SPA_AUDIO_DSP_H
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12#include <spa/param/audio/raw.h>
13
14struct spa_audio_info_dsp {
15 enum spa_audio_format format; /*< format, one of the DSP formats in enum spa_audio_format */
16};
17
18#define SPA_AUDIO_INFO_DSP_INIT(...) ((struct spa_audio_info_dsp) { __VA_ARGS__ })
24#ifdef __cplusplus
25} /* extern "C" */
26#endif
27
28#endif /* SPA_AUDIO_DSP_H */
spa/param/audio/raw.h
spa_audio_format
Definition raw.h:31
Definition dsp.h:18
enum spa_audio_format format
Definition dsp.h:19