Document the stereo-mode config option
[openal-soft.git] / alsoftrc.sample
blobc335b33c990cf1620431bf8ebba55edd851d5299
1 # OpenAL config file.
3 # Option blocks may appear multiple times, and duplicated options will take the
4 # last value specified. Environment variables may be specified within option
5 # values, and are automatically substituted when the config file is loaded.
6 # Environment variable names may only contain alpha-numeric characters (a-z,
7 # A-Z, 0-9) and underscores (_), and are prefixed with $. For example,
8 # specifying "$HOME/file.ext" would typically result in something like
9 # "/home/user/file.ext". To specify an actual "$" character, use "$$".
11 # The system-wide settings can be put in /etc/openal/alsoft.conf and user-
12 # specific override settings in $HOME/.alsoftrc.
13 # For Windows, these settings should go into $AppData\alsoft.ini
15 # Option and block names are case-insenstive. The supplied values are only
16 # hints and may not be honored (though generally it'll try to get as close as
17 # possible). Note: options that are left unset may default to app- or system-
18 # specified values. These are the current available settings:
21 ## General stuff
23 [general]
25 ## disable-cpu-exts:
26 #  Disables use of specialized methods that use specific CPU intrinsics.
27 #  Certain methods may utilize CPU extensions for improved performance, and
28 #  this option is useful for preventing some or all of those methods from being
29 #  used. The available extensions are: sse, sse2, sse4.1, and neon. Specifying
30 #  'all' disables use of all such specialized methods.
31 #disable-cpu-exts =
33 ## drivers:
34 #  Sets the backend driver list order, comma-seperated. Unknown backends and
35 #  duplicated names are ignored. Unlisted backends won't be considered for use
36 #  unless the list is ended with a comma (e.g. 'oss,' will try OSS first before
37 #  other backends, while 'oss' will try OSS only). Backends prepended with -
38 #  won't be considered for use (e.g. '-oss,' will try all available backends
39 #  except OSS). An empty list means to try all backends.
40 #drivers =
42 ## channels:
43 #  Sets the output channel configuration. If left unspecified, one will try to
44 #  be detected from the system, and defaulting to stereo. The available values
45 #  are: mono, stereo, quad, surround51, surround51rear, surround61, surround71
46 #channels =
48 ## sample-type:
49 #  Sets the output sample type. Currently, all mixing is done with 32-bit float
50 #  and converted to the output sample type as needed. Available values are:
51 #  int8    - signed 8-bit int
52 #  uint8   - unsigned 8-bit int
53 #  int16   - signed 16-bit int
54 #  uint16  - unsigned 16-bit int
55 #  int32   - signed 32-bit int
56 #  uint32  - unsigned 32-bit int
57 #  float32 - 32-bit float
58 #sample-type = float32
60 ## frequency:
61 #  Sets the output frequency. If left unspecified it will try to detect a
62 #  default from the system, otherwise it will default to 44100.
63 #frequency =
65 ## period_size:
66 #  Sets the update period size, in frames. This is the number of frames needed
67 #  for each mixing update. Acceptable values range between 64 and 8192.
68 #period_size = 1024
70 ## periods:
71 #  Sets the number of update periods. Higher values create a larger mix ahead,
72 #  which helps protect against skips when the CPU is under load, but increases
73 #  the delay between a sound getting mixed and being heard. Acceptable values
74 #  range between 2 and 16.
75 #periods = 4
77 ## stereo-mode
78 #  Specifies if stereo output is treated as being headphones or speakers. With
79 #  headphones, HRTF or crossfeed filters may be used for better audio quality.
80 #stereo-mode = auto
82 ## hrtf:
83 #  Enables HRTF filters. These filters provide for better sound spatialization
84 #  while using headphones. The default filter will only work when output is
85 #  44100hz stereo. While HRTF is active, the cf_level option is disabled.
86 #  Default is disabled since stereo speaker output quality may suffer.
87 #hrtf = false
89 ## hrtf_tables
90 #  Specifies a comma-separated list of files containing HRTF data sets. The
91 #  format of the files are described in hrtf.txt. The filenames may contain
92 #  these markers, which will be replaced as needed:
93 #  %r - Device sampling rate
94 #  %% - Percent sign (%)
95 #  The listed files are relative to system-dependant data directories. On
96 #  Windows this is:
97 #  $AppData\openal\hrtf
98 #  And on other systems, it's (in order):
99 #  $XDG_DATA_HOME/openal/hrtf  (defaults to $HOME/.local/share/openal/hrtf)
100 #  $XDG_DATA_DIRS/openal/hrtf  (defaults to /usr/local/share/openal/hrtf and
101 #                               /usr/share/openal/hrtf)
102 #  An absolute path may also be specified, if the given file is elsewhere.
103 #hrtf_tables = default-%r.mhr
105 ## cf_level:
106 #  Sets the crossfeed level for stereo output. Valid values are:
107 #  0 - No crossfeed
108 #  1 - Low crossfeed
109 #  2 - Middle crossfeed
110 #  3 - High crossfeed (virtual speakers are closer to itself)
111 #  4 - Low easy crossfeed
112 #  5 - Middle easy crossfeed
113 #  6 - High easy crossfeed
114 #  Users of headphones may want to try various settings. Has no effect on non-
115 #  stereo modes.
116 #cf_level = 0
118 ## resampler:
119 #  Selects the resampler used when mixing sources. Valid values are:
120 #  point - nearest sample, no interpolation
121 #  linear - extrapolates samples using a linear slope between samples
122 #  cubic - extrapolates samples using a Catmull-Rom spline
123 #  Specifying other values will result in using the default (linear).
124 #resampler = linear
126 ## rt-prio:
127 #  Sets real-time priority for the mixing thread. Not all drivers may use this
128 #  (eg. PortAudio) as they already control the priority of the mixing thread.
129 #  0 and negative values will disable it. Note that this may constitute a
130 #  security risk since a real-time priority thread can indefinitely block
131 #  normal-priority threads if it fails to wait. As such, the default is
132 #  disabled.
133 #rt-prio = 0
135 ## sources:
136 #  Sets the maximum number of allocatable sources. Lower values may help for
137 #  systems with apps that try to play more sounds than the CPU can handle.
138 #sources = 256
140 ## slots:
141 #  Sets the maximum number of Auxiliary Effect Slots an app can create. A slot
142 #  can use a non-negligible amount of CPU time if an effect is set on it even
143 #  if no sources are feeding it, so this may help when apps use more than the
144 #  system can handle.
145 #slots = 4
147 ## sends:
148 #  Sets the number of auxiliary sends per source. When not specified (default),
149 #  it allows the app to request how many it wants. The maximum value currently
150 #  possible is 4.
151 #sends =
153 ## excludefx:
154 #  Sets which effects to exclude, preventing apps from using them. This can
155 #  help for apps that try to use effects which are too CPU intensive for the
156 #  system to handle. Available effects are: eaxreverb,reverb,autowah,chorus,
157 #  compressor,distortion,echo,equalizer,flanger,modulator,dedicated
158 #excludefx =
160 ## default-reverb:
161 #  A reverb preset that applies by default to all sources on send 0
162 #  (applications that set their own slots on send 0 will override this).
163 #  Available presets are: None, Generic, PaddedCell, Room, Bathroom,
164 #  Livingroom, Stoneroom, Auditorium, ConcertHall, Cave, Arena, Hangar,
165 #  CarpetedHallway, Hallway, StoneCorridor, Alley, Forest, City, Moutains,
166 #  Quarry, Plain, ParkingLot, SewerPipe, Underwater, Drugged, Dizzy, Psychotic.
167 #default-reverb =
169 ## trap-alc-error:
170 #  Generates a SIGTRAP signal when an ALC device error is generated, on systems
171 #  that support it. This helps when debugging, while trying to find the cause
172 #  of a device error. On Windows, a breakpoint exception is generated.
173 #trap-alc-error = false
175 ## trap-al-error:
176 #  Generates a SIGTRAP signal when an AL context error is generated, on systems
177 #  that support it. This helps when debugging, while trying to find the cause
178 #  of a context error. On Windows, a breakpoint exception is generated.
179 #trap-al-error = false
182 ## MIDI stuff (EXPERIMENTAL)
184 [midi]
186 ## soundfont:
187 #  A default soundfont (sf2 format). Used when an app requests the system
188 #  default. The listed file is relative to system-dependant data directories.
189 #  On Windows this is:
190 #  $AppData\openal\soundfonts
191 #  And on other systems, it's (in order):
192 #  $XDG_DATA_HOME/openal/soundfonts
193 #  $XDG_DATA_DIRS/openal/soundfonts
194 #  An absolute path may also be specified, if the given file is elsewhere.
195 #soundfont =
197 ## volume:
198 #  Additional attenuation applied to MIDI output, expressed in decibels. This
199 #  is used to help keep the mix from clipping, and so must be 0 or less. The
200 #  value is logarithmic, so -6 will be about half amplitude, and -12 about
201 #  1/4th. The default is roughly -13.9794 (0.2, or 1/5th).
202 #volume =
205 ## Reverb effect stuff (includes EAX reverb)
207 [reverb]
209 ## boost:
210 #  A global amplification for reverb output, expressed in decibels. The value
211 #  is logarithmic, so +6 will be a scale of (approximately) 2x, +12 will be a
212 #  scale of 4x, etc. Similarly, -6 will be about half, and -12 about 1/4th. A
213 #  value of 0 means no change.
214 #boost = 0
216 ## emulate-eax:
217 #  Allows the standard reverb effect to be used in place of EAX reverb. EAX
218 #  reverb processing is a bit more CPU intensive than standard, so this option
219 #  allows a simpler effect to be used at the loss of some quality.
220 #emulate-eax = false
223 ## PulseAudio backend stuff
225 [pulse]
227 ## spawn-server:
228 #  Attempts to autospawn a PulseAudio server whenever needed (initializing the
229 #  backend, enumerating devices, etc). Setting autospawn to false in Pulse's
230 #  client.conf will still prevent autospawning even if this is set to true.
231 #spawn-server = true
233 ## allow-moves:
234 #  Allows PulseAudio to move active streams to different devices. Note that the
235 #  device specifier (seen by applications) will not be updated when this
236 #  occurs, and neither will the AL device configuration (sample rate, format,
237 #  etc).
238 #allow-moves = false
241 ## ALSA backend stuff
243 [alsa]
245 ## device:
246 #  Sets the device name for the default playback device.
247 #device = default
249 ## device-prefix:
250 #  Sets the prefix used by the discovered (non-default) playback devices. This
251 #  will be appended with "CARD=c,DEV=d", where c is the card id and d is the
252 #  device index for the requested device name.
253 #device-prefix = plughw:
255 ## device-prefix-*:
256 #  Card- and device-specific prefixes may be used to override the device-prefix
257 #  option. The option may specify the card id (eg, device-prefix-NVidia), or
258 #  the card id and device index (eg, device-prefix-NVidia-0). The card id is
259 #  case-sensitive.
260 #device-prefix- =
262 ## capture:
263 #  Sets the device name for the default capture device.
264 #capture = default
266 ## capture-prefix:
267 #  Sets the prefix used by the discovered (non-default) capture devices. This
268 #  will be appended with "CARD=c,DEV=d", where c is the card id and d is the
269 #  device number for the requested device name.
270 #capture-prefix = plughw:
272 ## capture-prefix-*:
273 #  Card- and device-specific prefixes may be used to override the
274 #  capture-prefix option. The option may specify the card id (eg,
275 #  capture-prefix-NVidia), or the card id and device index (eg,
276 #  capture-prefix-NVidia-0). The card id is case-sensitive.
277 #capture-prefix- =
279 ## mmap:
280 #  Sets whether to try using mmap mode (helps reduce latencies and CPU
281 #  consumption). If mmap isn't available, it will automatically fall back to
282 #  non-mmap mode. True, yes, on, and non-0 values will attempt to use mmap. 0
283 #  and anything else will force mmap off.
284 #mmap = true
287 ## OSS backend stuff
289 [oss]
291 ## device:
292 #  Sets the device name for OSS output.
293 #device = /dev/dsp
295 ## capture:
296 #  Sets the device name for OSS capture.
297 #capture = /dev/dsp
300 ## Solaris backend stuff
302 [solaris]
304 ## device:
305 #  Sets the device name for Solaris output.
306 #device = /dev/audio
309 ## QSA backend stuff
311 [qsa]
314 ## MMDevApi backend stuff
316 [mmdevapi]
319 ## DirectSound backend stuff
321 [dsound]
324 ## Windows Multimedia backend stuff
326 [winmm]
329 ## PortAudio backend stuff
331 [port]
333 ## device:
334 #  Sets the device index for output. Negative values will use the default as
335 #  given by PortAudio itself.
336 #device = -1
338 ## capture:
339 #  Sets the device index for capture. Negative values will use the default as
340 #  given by PortAudio itself.
341 #capture = -1
344 ## Wave File Writer stuff
346 [wave]
348 ## file:
349 #  Sets the filename of the wave file to write to. An empty name prevents the
350 #  backend from opening, even when explicitly requested.
351 #  THIS WILL OVERWRITE EXISTING FILES WITHOUT QUESTION!
352 #file =