X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=module.c;fp=module.c;h=d047b26c29c0636c60ad0a3bf18f5b3dd03b32c8;hb=9dc64e1e291d6518da0a918105c5bf7b1c603dd5;hp=beb2c739ad9ba521f7c83463332ba421b71c1a35;hpb=6fc3e02df9de8347eb76fdfd26ed781686d37b6c;p=staging%2Fagl-audio-plugin.git diff --git a/module.c b/module.c index beb2c73..d047b26 100644 --- a/module.c +++ b/module.c @@ -34,6 +34,7 @@ $ pactl load-module mypamodule #include /* for "pa_modargs" */ #include "userdata.h" /* for "struct userdata" */ +#include "config.h" /* for "pa_config_...()" */ #include "utils.h" /* for "struct pa_null_sink", "pa_utils_create_null_sink()"... */ #include "loopback.h" /* for "struct pa_loopback/loopnode" */ #include "zone.h" /* for "struct pa_zoneset" */ @@ -80,6 +81,8 @@ int pa__init (pa_module *m) const char *amsocktype; /* Optional external routing daemon: socket type ("unix"/"tcp") */ const char *amaddr; /* Optional external routing daemon: socket address (path/ip address) */ const char *amport; /* Optional external routing daemon: socket port ("tcp" type only) */ + const char *cfgpath; + char buf[4096]; pa_assert (m); @@ -115,6 +118,11 @@ int pa__init (pa_module *m) m->userdata = u; + /* apply the config file */ + + cfgpath = pa_config_file_get_path (cfgdir, cfgfile, buf, sizeof(buf)); + pa_config_parse_file (u, cfgpath); + /* really initialize the module's core logic */ pa_tracker_synchronize (u);