mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2026-02-05 11:20:28 +01:00
spa-type: add the AUDIO_CHANNEL table
This commit is contained in:
parent
33e67f2189
commit
78fe4dc30e
2 changed files with 3 additions and 0 deletions
|
|
@ -93,6 +93,7 @@ static struct spa_type_table_data s_tables [WP_SPA_TYPE_TABLE_LAST] = {
|
|||
[WP_SPA_TYPE_TABLE_PARAM_PROFILE] = {spa_type_param_profile, SPA_N_ELEMENTS (spa_type_param_port_config), NULL, NULL, NULL, },
|
||||
[WP_SPA_TYPE_TABLE_CONTROL] = {spa_type_control, SPA_CONTROL_LAST, NULL, NULL, NULL, },
|
||||
[WP_SPA_TYPE_TABLE_CHOICE] = {spa_type_choice, SPA_N_ELEMENTS (spa_type_choice), NULL, NULL, NULL, },
|
||||
[WP_SPA_TYPE_TABLE_AUDIO_CHANNEL] = {spa_type_audio_channel, SPA_N_ELEMENTS (spa_type_audio_channel), NULL, NULL, NULL, },
|
||||
};
|
||||
|
||||
static WpSpaTypeTable
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ G_BEGIN_DECLS
|
|||
* @WP_SPA_TYPE_TABLE_FORMAT: The object format type table
|
||||
* @WP_SPA_TYPE_TABLE_PARAM_PORT_CONFIG: The object param port config type table
|
||||
* @WP_SPA_TYPE_TABLE_PARAM_PROFILE: The sequence control type table
|
||||
* @WP_SPA_TYPE_TABLE_AUDIO_CHANNEL: The audio channel type table
|
||||
*
|
||||
* The diferent tables (namespaces) the registry has.
|
||||
*/
|
||||
|
|
@ -38,6 +39,7 @@ typedef enum {
|
|||
WP_SPA_TYPE_TABLE_FORMAT,
|
||||
WP_SPA_TYPE_TABLE_PARAM_PORT_CONFIG,
|
||||
WP_SPA_TYPE_TABLE_PARAM_PROFILE,
|
||||
WP_SPA_TYPE_TABLE_AUDIO_CHANNEL,
|
||||
WP_SPA_TYPE_TABLE_LAST,
|
||||
} WpSpaTypeTable;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue