mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-19 08:57:00 -05:00
Merge branch 'master' of git://0pointer.de/pulseaudio into dbus-work
Conflicts: src/Makefile.am src/daemon/daemon-conf.c src/daemon/daemon.conf.in src/modules/module-stream-restore.c src/pulse/client-conf.c src/pulsecore/namereg.c
This commit is contained in:
commit
bcaba0b1b4
134 changed files with 15076 additions and 12812 deletions
|
|
@ -94,17 +94,18 @@ int pa_client_conf_load(pa_client_conf *c, const char *filename) {
|
|||
|
||||
/* Prepare the configuration parse table */
|
||||
pa_config_item table[] = {
|
||||
{ "daemon-binary", pa_config_parse_string, &c->daemon_binary, NULL },
|
||||
{ "extra-arguments", pa_config_parse_string, &c->extra_arguments, NULL },
|
||||
{ "default-sink", pa_config_parse_string, &c->default_sink, NULL },
|
||||
{ "default-source", pa_config_parse_string, &c->default_source, NULL },
|
||||
{ "default-server", pa_config_parse_string, &c->default_server, NULL },
|
||||
{ "default-dbus-server", pa_config_parse_string, &c->default_dbus_server, NULL },
|
||||
{ "autospawn", pa_config_parse_bool, &c->autospawn, NULL },
|
||||
{ "cookie-file", pa_config_parse_string, &c->cookie_file, NULL },
|
||||
{ "disable-shm", pa_config_parse_bool, &c->disable_shm, NULL },
|
||||
{ "shm-size-bytes", pa_config_parse_size, &c->shm_size, NULL },
|
||||
{ NULL, NULL, NULL, NULL },
|
||||
{ "daemon-binary", pa_config_parse_string, &c->daemon_binary, NULL },
|
||||
{ "extra-arguments", pa_config_parse_string, &c->extra_arguments, NULL },
|
||||
{ "default-sink", pa_config_parse_string, &c->default_sink, NULL },
|
||||
{ "default-source", pa_config_parse_string, &c->default_source, NULL },
|
||||
{ "default-server", pa_config_parse_string, &c->default_server, NULL },
|
||||
{ "default-dbus-server", pa_config_parse_string, &c->default_dbus_server, NULL },
|
||||
{ "autospawn", pa_config_parse_bool, &c->autospawn, NULL },
|
||||
{ "cookie-file", pa_config_parse_string, &c->cookie_file, NULL },
|
||||
{ "disable-shm", pa_config_parse_bool, &c->disable_shm, NULL },
|
||||
{ "enable-shm", pa_config_parse_not_bool, &c->disable_shm, NULL },
|
||||
{ "shm-size-bytes", pa_config_parse_size, &c->shm_size, NULL },
|
||||
{ NULL, NULL, NULL, NULL },
|
||||
};
|
||||
|
||||
if (filename) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue