context: make it possible to control loaded modules

use the PIPEWIRE_PROFILE_MODULES env variable to load the modules
when nothing else is given.
This commit is contained in:
Wim Taymans 2020-08-05 17:37:40 +02:00
parent 8e3ae33550
commit 2cf5bf7ac1

View file

@ -313,7 +313,10 @@ struct pw_context *pw_context_new(struct pw_loop *main_loop,
this->sc_pagesize = sysconf(_SC_PAGESIZE);
if ((str = pw_properties_get(properties, PW_KEY_CONTEXT_PROFILE_MODULES)) == NULL)
str = pw_properties_get(properties, PW_KEY_CONTEXT_PROFILE_MODULES);
if (str == NULL)
str = getenv("PIPEWIRE_PROFILE_MODULES");
if (str == NULL)
str = "default";
load_module_profile(this, str);