Files
wireplumber/modules/module-si-adapter/algorithms.h
George Kiagiadakis 8a94937b2a proxy: refactor how PARAM_Props/PropInfo are handled
+ rename FEATURE_CONTROLS to FEATURE_PROPS
+ add accessor for the standard spa_param_info (info->params)
+ hide the low-level params API that nobody uses
2020-05-25 18:54:41 +03:00

16 lines
523 B
C

/* WirePlumber
*
* Copyright © 2019 Collabora Ltd.
* @author George Kiagiadakis <george.kiagiadakis@collabora.com>
*
* SPDX-License-Identifier: MIT
*/
typedef void (*CreateLinkCb) (WpProperties *, gpointer);
gboolean multiport_link_create (GVariant * src_data, GVariant * sink_data,
CreateLinkCb create_link_cb, gpointer user_data, GError ** error);
struct spa_audio_info_raw;
gboolean choose_sensible_raw_audio_format (WpIterator *formats,
gint channels_preference, struct spa_audio_info_raw *result);