Make separate _register function so that we can first configure the
object before making it publicly visible.
This commit is contained in:
Wim Taymans 2017-09-18 11:54:25 +02:00
parent 67d4dd8656
commit f64c28c091
25 changed files with 131 additions and 99 deletions

View file

@ -473,11 +473,11 @@ static void make_node(struct data *data)
if (data->path)
pw_properties_set(props, "pipewire.target.node", data->path);
data->node = pw_node_new(data->core, NULL, NULL, "SDL-sink", props, 0);
data->node = pw_node_new(data->core, "SDL-sink", props, 0);
data->impl_node = impl_node;
pw_node_set_implementation(data->node, &data->impl_node);
pw_node_register(data->node);
pw_node_register(data->node, NULL, NULL);
pw_remote_export(data->remote, data->node);
}
@ -519,8 +519,6 @@ int main(int argc, char *argv[])
data.remote = pw_remote_new(data.core, NULL, 0);
data.path = argc > 1 ? argv[1] : NULL;
pw_module_load(data.core, "libpipewire-module-spa-node-factory", NULL);
init_type(&data.type, data.t->map);
spa_debug_set_type_map(data.t->map);