mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-03-13 05:33:55 -04:00
Including C headers inside of `extern "C"` breaks use from C++. Hoist the includes of standard C headers above the block so we don't try to mangle the stdlib. I initially tried to scope this with a targeted change but it's too hard to do correctly that way. This way, we avoid whack-a-mole. Firefox is working around this in their e21461b7b8b39cc31ba53c47d4f6f310c673ff2f commit. Bug: https://bugzilla.mozilla.org/1953080
46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
/* Simple Plugin API */
|
|
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef SPA_PARAM_PORT_CONFIG_H
|
|
#define SPA_PARAM_PORT_CONFIG_H
|
|
|
|
#include <spa/param/param.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* \addtogroup spa_param
|
|
* \{
|
|
*/
|
|
|
|
enum spa_param_port_config_mode {
|
|
SPA_PARAM_PORT_CONFIG_MODE_none, /**< no configuration */
|
|
SPA_PARAM_PORT_CONFIG_MODE_passthrough, /**< passthrough configuration */
|
|
SPA_PARAM_PORT_CONFIG_MODE_convert, /**< convert configuration */
|
|
SPA_PARAM_PORT_CONFIG_MODE_dsp, /**< dsp configuration, depending on the external
|
|
* format. For audio, ports will be configured for
|
|
* the given number of channels with F32 format. */
|
|
};
|
|
|
|
/** properties for SPA_TYPE_OBJECT_ParamPortConfig */
|
|
enum spa_param_port_config {
|
|
SPA_PARAM_PORT_CONFIG_START,
|
|
SPA_PARAM_PORT_CONFIG_direction, /**< (Id enum spa_direction) direction */
|
|
SPA_PARAM_PORT_CONFIG_mode, /**< (Id enum spa_param_port_config_mode) mode */
|
|
SPA_PARAM_PORT_CONFIG_monitor, /**< (Bool) enable monitor output ports on input ports */
|
|
SPA_PARAM_PORT_CONFIG_control, /**< (Bool) enable control ports */
|
|
SPA_PARAM_PORT_CONFIG_format, /**< (Object) format filter */
|
|
};
|
|
|
|
/**
|
|
* \}
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* SPA_PARAM_PORT_CONFIG_H */
|