From 2cf5bf7ac1e48e394f9f01cb233b095e313f98bb Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 5 Aug 2020 17:37:40 +0200 Subject: [PATCH] context: make it possible to control loaded modules use the PIPEWIRE_PROFILE_MODULES env variable to load the modules when nothing else is given. --- src/pipewire/context.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/pipewire/context.c b/src/pipewire/context.c index 63948c0e3..697381eb9 100644 --- a/src/pipewire/context.c +++ b/src/pipewire/context.c @@ -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);