mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-08 13:30:08 -05:00
types: more work on types
This commit is contained in:
parent
acedfe71c0
commit
5825c62d6d
76 changed files with 1713 additions and 1477 deletions
|
|
@ -187,26 +187,26 @@ dump_object (PinosContext *context,
|
|||
uint32_t id,
|
||||
DumpData *data)
|
||||
{
|
||||
if (type == context->uri.core) {
|
||||
if (type == context->type.core) {
|
||||
pinos_context_get_core_info (context,
|
||||
dump_core_info,
|
||||
data);
|
||||
} else if (type == context->uri.node) {
|
||||
} else if (type == context->type.node) {
|
||||
pinos_context_get_node_info_by_id (context,
|
||||
id,
|
||||
dump_node_info,
|
||||
data);
|
||||
} else if (type == context->uri.module) {
|
||||
} else if (type == context->type.module) {
|
||||
pinos_context_get_module_info_by_id (context,
|
||||
id,
|
||||
dump_module_info,
|
||||
data);
|
||||
} else if (type == context->uri.client) {
|
||||
} else if (type == context->type.client) {
|
||||
pinos_context_get_client_info_by_id (context,
|
||||
id,
|
||||
dump_client_info,
|
||||
data);
|
||||
} else if (type == context->uri.link) {
|
||||
} else if (type == context->type.link) {
|
||||
pinos_context_get_link_info_by_id (context,
|
||||
id,
|
||||
dump_link_info,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue