2004-09-13 23:28:30 +00:00
|
|
|
# $Id$
|
|
|
|
|
#
|
2006-06-19 21:53:48 +00:00
|
|
|
# This file is part of PulseAudio.
|
2004-09-13 23:28:30 +00:00
|
|
|
#
|
2006-06-19 21:53:48 +00:00
|
|
|
# PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
# it under the terms of the GNU Lesser General Public License as published by
|
2004-09-13 23:28:30 +00:00
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
2006-06-19 21:53:48 +00:00
|
|
|
# PulseAudio is distributed in the hope that it will be useful, but
|
2004-09-13 23:28:30 +00:00
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
# General Public License for more details.
|
|
|
|
|
#
|
2004-11-14 14:58:54 +00:00
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
# along with PulseAudio; if not, write to the Free Software
|
2004-09-13 23:28:30 +00:00
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
# USA.
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
## Configuration file for the pulseaudio daemon. Default values are
|
2004-09-17 19:45:44 +00:00
|
|
|
## commented out. Use either ; or # for commenting
|
2004-09-13 23:28:30 +00:00
|
|
|
|
|
|
|
|
## Daemonize after startup
|
2007-11-01 00:34:43 +00:00
|
|
|
; daemonize = no
|
2004-09-13 23:28:30 +00:00
|
|
|
|
|
|
|
|
## Quit if startup fails
|
2007-11-01 00:34:43 +00:00
|
|
|
; fail = yes
|
|
|
|
|
|
|
|
|
|
## Renice the daemon to level -15. This a good idea if you experience
|
|
|
|
|
## drop-outs in the playback. However, this is a certain security
|
|
|
|
|
## issue, since it works when called SUID root only. root is dropped
|
|
|
|
|
## immediately after gaining the nice level on startup, thus it is
|
|
|
|
|
## presumably safe.
|
|
|
|
|
; high-priority = yes
|
|
|
|
|
|
|
|
|
|
## Try to acquire SCHED_FIFO scheduling for the IO threads. The same
|
|
|
|
|
## security concerns as mentioned above apply. However, if PA enters
|
|
|
|
|
## an endless loop, realtime scheduling causes a system lockup. Thus,
|
|
|
|
|
## realtime scheduling should only be enabled on trusted machines for
|
|
|
|
|
## now. Please not that only the IO threads of PulseAudio are made
|
|
|
|
|
## real-time. The controlling thread is left a normally scheduled
|
|
|
|
|
## thread. Thus the enabling the high-priority option is orthogonal.
|
|
|
|
|
; realtime-scheduling = no
|
|
|
|
|
|
|
|
|
|
## The realtime priority to acquire, if realtime-scheduling is
|
|
|
|
|
## enabled. (Note: JACK uses 10 by default, 9 for clients -- some
|
|
|
|
|
## PulseAudio threads might choose a priority a little lower or higher
|
|
|
|
|
## than this value.)
|
|
|
|
|
; realtime-priority = 5
|
|
|
|
|
|
|
|
|
|
## The nice level to acquire for the daemon, if high-priority is
|
|
|
|
|
## enabled. (Note: on some distributions X11 uses -10 by default.)
|
|
|
|
|
; nice-level = -11
|
2004-09-13 23:28:30 +00:00
|
|
|
|
|
|
|
|
## Disallow module loading after startup
|
2007-11-01 00:34:43 +00:00
|
|
|
; disallow-module-loading = no
|
2004-09-13 23:28:30 +00:00
|
|
|
|
|
|
|
|
## Terminate the daemon after the last client quit and this time
|
|
|
|
|
## passed. Use a negative value to disable this feature.
|
|
|
|
|
; exit-idle-time = -1
|
|
|
|
|
|
2007-11-01 00:34:43 +00:00
|
|
|
## Unload autoloaded modules after being idle for this time
|
2004-09-17 23:45:28 +00:00
|
|
|
; module-idle-time = 20
|
2004-09-13 23:28:30 +00:00
|
|
|
|
2007-11-01 00:34:43 +00:00
|
|
|
## Unload autoloaded sample cache entries after being idle for this time
|
2006-07-19 17:44:19 +00:00
|
|
|
; scache-idle-time = 20
|
|
|
|
|
|
2004-09-17 19:45:44 +00:00
|
|
|
## The path were to look for dynamic shared objects (DSOs aka
|
|
|
|
|
## plugins). You may specify more than one path seperated by
|
2007-11-01 00:34:43 +00:00
|
|
|
## colons.
|
2006-07-19 18:11:12 +00:00
|
|
|
; dl-search-path = @PA_DLSEARCHPATH@
|
2004-09-13 23:28:30 +00:00
|
|
|
|
|
|
|
|
## The default script file to load. Specify an empty string for not
|
2007-11-01 00:34:43 +00:00
|
|
|
## loading a default script file. The
|
2006-07-19 18:11:12 +00:00
|
|
|
; default-script-file = @PA_DEFAULT_CONFIG_FILE@
|
2004-09-13 23:28:30 +00:00
|
|
|
|
|
|
|
|
## The default log target. Use either "stderr", "syslog" or
|
|
|
|
|
## "auto". The latter is equivalent to "sylog" in case daemonize is
|
|
|
|
|
## true, otherwise to "stderr".
|
|
|
|
|
; log-target = auto
|
2004-09-17 19:45:44 +00:00
|
|
|
|
2007-11-01 00:34:43 +00:00
|
|
|
# Log level, one of debug, info, notice, warning, error. Log messages
|
|
|
|
|
# with a lower log level than specified here are not logged,
|
|
|
|
|
; log-level = notice
|
|
|
|
|
|
2004-11-21 21:31:28 +00:00
|
|
|
## The resampling algorithm to use. Use one of src-sinc-best-quality,
|
|
|
|
|
## src-sinc-medium-quality, src-sinc-fastest, src-zero-order-hold,
|
2007-11-01 00:34:43 +00:00
|
|
|
## src-linear, trivial, speex-float-N, speex-fixed-N, ffmpeg. See the
|
|
|
|
|
## documentation of libsamplerate for an explanation for the different
|
|
|
|
|
## src- methods. The method 'trivial' is the most basic algorithm
|
|
|
|
|
## implemented. If you're tight on CPU consider using this. On the
|
|
|
|
|
## other hand it has the worst quality of them all. The speex
|
|
|
|
|
## resamplers take an integer quality setting in the range 0..9
|
|
|
|
|
## (bad...good). They exist in two flavours: fixed and float. The
|
|
|
|
|
## former uses fixed point numbers, the latter relies on floating
|
|
|
|
|
## point numbers. On most desktop CPUs the float point resmapler is a
|
|
|
|
|
## lot faster, and it also offers slightly better quality.
|
|
|
|
|
; resample-method = speex-float-3
|
2004-11-21 21:31:28 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
## Create a PID file in /tmp/pulseaudio-$USER/pid. Of this is enabled
|
|
|
|
|
## you may use commands like "pulseaudio --kill" or "pulseaudio
|
|
|
|
|
## --check". If you are planning to start more than one pulseaudio
|
2004-11-21 21:31:28 +00:00
|
|
|
## process per user, you better disable this option since it
|
|
|
|
|
## effectively disables multiple instances.
|
2007-11-01 00:34:43 +00:00
|
|
|
; use-pid-file = yes
|
2006-07-19 17:44:19 +00:00
|
|
|
|
2006-07-25 20:51:15 +00:00
|
|
|
## Do not install the CPU load limit, even on platforms where it is
|
2007-11-01 00:34:43 +00:00
|
|
|
## supported. This option is useful when debugging/profiling
|
2006-07-25 20:51:15 +00:00
|
|
|
## PulseAudio to disable disturbing SIGXCPU signals.
|
2007-11-01 00:34:43 +00:00
|
|
|
; no-cpu-limit = no
|
2006-07-25 20:51:15 +00:00
|
|
|
|
2006-07-19 17:44:19 +00:00
|
|
|
## Run the daemon as system-wide instance, requires root priviliges
|
2007-11-01 00:34:43 +00:00
|
|
|
; system-instance = no
|
2006-07-20 01:25:37 +00:00
|
|
|
|
2007-11-01 00:34:43 +00:00
|
|
|
## Resource limits, see getrlimit(2) for more information. Set to -1
|
|
|
|
|
## if PA shouldn't touch the resource limit. Not all resource limits
|
|
|
|
|
## are available on all operating systems.
|
2006-07-20 01:25:37 +00:00
|
|
|
; rlimit-as = -1
|
|
|
|
|
; rlimit-core = -1
|
|
|
|
|
; rlimit-data = -1
|
|
|
|
|
; rlimit-fsize = -1
|
2007-10-28 19:13:50 +00:00
|
|
|
; rlimit-nofile = 256
|
2006-07-20 01:25:37 +00:00
|
|
|
; rlimit-stack = -1
|
|
|
|
|
; rlimit-nproc = -1
|
2007-10-28 19:13:50 +00:00
|
|
|
; rlimit-memlock = 16384
|
2007-11-01 00:34:43 +00:00
|
|
|
; rlimit-nice = 31
|
|
|
|
|
; rlimit-rtprio = 9
|
2006-08-19 01:20:40 +00:00
|
|
|
|
2007-11-01 00:34:43 +00:00
|
|
|
## Disable shared memory data transfer
|
|
|
|
|
; disable-shm = no
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
## Default sample format
|
|
|
|
|
; default-sample-format = s16le
|
|
|
|
|
; default-sample-rate = 44100
|
|
|
|
|
; default-sample-channels = 2
|
|
|
|
|
|
|
|
|
|
## Default fragment settings, for device drivers that need this
|
|
|
|
|
; default-fragments = 4
|
|
|
|
|
; default-fragment-size-msec = 25
|