mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
* add first part of zeroconf publisher
* bump version to 0.7.1. * improve logging subsystem (introducing log levels) * remove verbose flag on cli * add new API pa_sample_format_to_string() * replace strtol() by usages of pa_atou() and pa_atoi() git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@317 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
5be9641ffe
commit
73eabece33
38 changed files with 467 additions and 280 deletions
|
|
@ -40,7 +40,6 @@ struct pa_daemon_conf {
|
|||
enum pa_daemon_conf_cmd cmd;
|
||||
int daemonize,
|
||||
fail,
|
||||
verbose,
|
||||
high_priority,
|
||||
disallow_module_loading,
|
||||
exit_idle_time,
|
||||
|
|
@ -50,6 +49,7 @@ struct pa_daemon_conf {
|
|||
use_pid_file;
|
||||
char *script_commands, *dl_search_path, *default_script_file;
|
||||
enum pa_log_target log_target;
|
||||
enum pa_log_level log_level;
|
||||
int resample_method;
|
||||
char *config_file;
|
||||
};
|
||||
|
|
@ -74,6 +74,7 @@ int pa_daemon_conf_env(struct pa_daemon_conf *c);
|
|||
|
||||
/* Set these configuration variables in the structure by passing a string */
|
||||
int pa_daemon_conf_set_log_target(struct pa_daemon_conf *c, const char *string);
|
||||
int pa_daemon_conf_set_log_level(struct pa_daemon_conf *c, const char *string);
|
||||
int pa_daemon_conf_set_resample_method(struct pa_daemon_conf *c, const char *string);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue