mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
context: move core implementation to impl-core.h
Move the core implementation to a separate file. Make a default core object in the context. Pass impl-core to server. We now tie the server to a core. Also keep track of the core that a client connected to. Fill the properties that we usually use to connect in the context and copy them when a connection is made. Use "internal" as the remote name to connect to the default internal core.
This commit is contained in:
parent
a1451fd820
commit
f724319e8a
16 changed files with 839 additions and 613 deletions
|
|
@ -1632,8 +1632,7 @@ int main(int argc, char *argv[])
|
|||
{
|
||||
struct data data = { 0 };
|
||||
struct pw_loop *l;
|
||||
const struct pw_core_info *info;
|
||||
char *error, args[128];
|
||||
char *error;
|
||||
|
||||
pw_init(&argc, &argv);
|
||||
|
||||
|
|
@ -1646,16 +1645,15 @@ int main(int argc, char *argv[])
|
|||
pw_map_init(&data.vars, 64, 16);
|
||||
|
||||
data.context = pw_context_new(l, pw_properties_new(PW_KEY_CORE_DAEMON, "1", NULL), 0);
|
||||
info = pw_context_get_info(data.context);
|
||||
|
||||
pw_context_load_module(data.context, "libpipewire-module-link-factory", NULL, NULL);
|
||||
|
||||
pw_loop_add_io(l, STDIN_FILENO, SPA_IO_IN|SPA_IO_HUP, false, do_input, &data);
|
||||
|
||||
fprintf(stdout, "Welcome to PipeWire \"%s\" version %s. Type 'help' for usage.\n", info->name, info->version);
|
||||
fprintf(stdout, "Welcome to PipeWire version %s. Type 'help' for usage.\n",
|
||||
pw_get_library_version());
|
||||
|
||||
snprintf(args, sizeof(args), "%s", info->name);
|
||||
do_connect(&data, "connect", args, &error);
|
||||
do_connect(&data, "connect", "internal", &error);
|
||||
|
||||
pw_main_loop_run(data.loop);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue