mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-08 13:30:08 -05:00
daemon-conf: Add conf file parsing
Support to parse configuration files. By default, the default conf file
is parsed ({sysconfdir}/pinos/pinos.conf), but that can be changed with
an environment variable (PINOS_CONFIG_FILE). The file can contain
commands and assignments (no assignment supported this far).
Support for command module-load is added.
This commit is contained in:
parent
d654a1bcd6
commit
7d8e2d53f7
14 changed files with 729 additions and 59 deletions
|
|
@ -24,10 +24,10 @@
|
|||
#include "gst-manager.h"
|
||||
#include "gst-node-factory.h"
|
||||
|
||||
gboolean pinos__module_init (PinosModule *module);
|
||||
gboolean pinos__module_init (PinosModule *module, const gchar * args);
|
||||
|
||||
G_MODULE_EXPORT gboolean
|
||||
pinos__module_init (PinosModule * module)
|
||||
pinos__module_init (PinosModule * module, G_GNUC_UNUSED const gchar * args)
|
||||
{
|
||||
PinosNodeFactory *factory;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue