Use std::exchange instead of two swaps
[openal-soft.git] / alsoftrc.sample
blobab0345d95d696b5f866e5795a9be6ead61e8191b
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 # Device-specific values may be specified by including the device name in the
12 # block name, with "general" replaced by the device name. That is, general
13 # options for the device "Name of Device" would be in the [Name of Device]
14 # block, while ALSA options would be in the [alsa/Name of Device] block.
15 # Options marked as "(global)" are not influenced by the device.
17 # The system-wide settings can be put in /etc/openal/alsoft.conf and user-
18 # specific override settings in $HOME/.alsoftrc.
19 # For Windows, these settings should go into $AppData\alsoft.ini
21 # Option and block names are case-senstive. The supplied values are only hints
22 # and may not be honored (though generally it'll try to get as close as
23 # possible). Note: options that are left unset may default to app- or system-
24 # specified values. These are the current available settings:
27 ## General stuff
29 [general]
31 ## disable-cpu-exts: (global)
32 #  Disables use of specialized methods that use specific CPU intrinsics.
33 #  Certain methods may utilize CPU extensions for improved performance, and
34 #  this option is useful for preventing some or all of those methods from being
35 #  used. The available extensions are: sse, sse2, sse3, sse4.1, and neon.
36 #  Specifying 'all' disables use of all such specialized methods.
37 #disable-cpu-exts =
39 ## drivers: (global)
40 #  Sets the backend driver list order, comma-seperated. Unknown backends and
41 #  duplicated names are ignored. Unlisted backends won't be considered for use
42 #  unless the list is ended with a comma (e.g. 'oss,' will try OSS first before
43 #  other backends, while 'oss' will try OSS only). Backends prepended with -
44 #  won't be considered for use (e.g. '-oss,' will try all available backends
45 #  except OSS). An empty list means to try all backends.
46 #drivers =
48 ## channels:
49 #  Sets the output channel configuration. If left unspecified, one will try to
50 #  be detected from the system, and defaulting to stereo. The available values
51 #  are: mono, stereo, quad, surround51, surround61, surround71, ambi1, ambi2,
52 #  ambi3. Note that the ambi* configurations provide ambisonic channels of the
53 #  given order (using ACN ordering and SN3D normalization by default), which
54 #  need to be decoded to play correctly on speakers.
55 #channels =
57 ## sample-type:
58 #  Sets the output sample type. Currently, all mixing is done with 32-bit float
59 #  and converted to the output sample type as needed. Available values are:
60 #  int8    - signed 8-bit int
61 #  uint8   - unsigned 8-bit int
62 #  int16   - signed 16-bit int
63 #  uint16  - unsigned 16-bit int
64 #  int32   - signed 32-bit int
65 #  uint32  - unsigned 32-bit int
66 #  float32 - 32-bit float
67 #sample-type = float32
69 ## frequency:
70 #  Sets the output frequency. If left unspecified it will try to detect a
71 #  default from the system, otherwise it will default to 44100.
72 #frequency =
74 ## period_size:
75 #  Sets the update period size, in sample frames. This is the number of frames
76 #  needed for each mixing update. Acceptable values range between 64 and 8192.
77 #  If left unspecified it will default to 1/50th of the frequency (20ms, or 882
78 #  for 44100, 960 for 48000, etc).
79 #period_size =
81 ## periods:
82 #  Sets the number of update periods. Higher values create a larger mix ahead,
83 #  which helps protect against skips when the CPU is under load, but increases
84 #  the delay between a sound getting mixed and being heard. Acceptable values
85 #  range between 2 and 16.
86 #periods = 3
88 ## stereo-mode:
89 #  Specifies if stereo output is treated as being headphones or speakers. With
90 #  headphones, HRTF or crossfeed filters may be used for better audio quality.
91 #  Valid settings are auto, speakers, and headphones.
92 #stereo-mode = auto
94 ## stereo-encoding:
95 #  Specifies the encoding method for non-HRTF stereo output. 'panpot' (default)
96 #  uses standard amplitude panning (aka pair-wise, stereo pair, etc) between
97 #  -30 and +30 degrees, while 'uhj' creates stereo-compatible two-channel UHJ
98 #  output, which encodes some surround sound information into stereo output
99 #  that can be decoded with a surround sound receiver. If crossfeed filters are
100 #  used, UHJ is disabled.
101 #stereo-encoding = panpot
103 ## ambi-format:
104 #  Specifies the channel order and normalization for the "ambi*" set of channel
105 #  configurations. Valid settings are: fuma, acn+fuma, ambix (or acn+sn3d), or
106 #  acn+n3d
107 #ambi-format = ambix
109 ## hrtf:
110 #  Controls HRTF processing. These filters provide better spatialization of
111 #  sounds while using headphones, but do require a bit more CPU power. While
112 #  HRTF is used, the cf_level option is ignored. Setting this to auto (default)
113 #  will allow HRTF to be used when headphones are detected or the app requests
114 #  it, while setting true or false will forcefully enable or disable HRTF
115 #  respectively.
116 #hrtf = auto
118 ## hrtf-mode:
119 #  Specifies the rendering mode for HRTF processing. Setting the mode to full
120 #  (default) applies a unique HRIR filter to each source given its relative
121 #  location, providing the clearest directional response at the cost of the
122 #  highest CPU usage. Setting the mode to ambi1, ambi2, or ambi3 will instead
123 #  mix to a first-, second-, or third-order ambisonic buffer respectively, then
124 #  decode that buffer with HRTF filters. Ambi1 has the lowest CPU usage,
125 #  replacing the per-source HRIR filter for a simple 4-channel panning mix, but
126 #  retains full 3D placement at the cost of a more diffuse response. Ambi2 and
127 #  ambi3 increasingly improve the directional clarity, at the cost of more CPU
128 #  usage (still less than "full", given some number of active sources).
129 #hrtf-mode = full
131 ## hrtf-size:
132 #  Specifies the impulse response size, in samples, for the HRTF filter. Larger
133 #  values increase the filter quality, while smaller values reduce processing
134 #  cost. A value of 0 (default) uses the full filter size in the dataset, and
135 #  the default dataset has a filter size of 32 samples at 44.1khz.
136 #hrtf-size = 0
138 ## default-hrtf:
139 #  Specifies the default HRTF to use. When multiple HRTFs are available, this
140 #  determines the preferred one to use if none are specifically requested. Note
141 #  that this is the enumerated HRTF name, not necessarily the filename.
142 #default-hrtf =
144 ## hrtf-paths:
145 #  Specifies a comma-separated list of paths containing HRTF data sets. The
146 #  format of the files are described in docs/hrtf.txt. The files within the
147 #  directories must have the .mhr file extension to be recognized. By default,
148 #  OS-dependent data paths will be used. They will also be used if the list
149 #  ends with a comma. On Windows this is:
150 #  $AppData\openal\hrtf
151 #  And on other systems, it's (in order):
152 #  $XDG_DATA_HOME/openal/hrtf  (defaults to $HOME/.local/share/openal/hrtf)
153 #  $XDG_DATA_DIRS/openal/hrtf  (defaults to /usr/local/share/openal/hrtf and
154 #                               /usr/share/openal/hrtf)
155 #hrtf-paths =
157 ## cf_level:
158 #  Sets the crossfeed level for stereo output. Valid values are:
159 #  0 - No crossfeed
160 #  1 - Low crossfeed
161 #  2 - Middle crossfeed
162 #  3 - High crossfeed (virtual speakers are closer to itself)
163 #  4 - Low easy crossfeed
164 #  5 - Middle easy crossfeed
165 #  6 - High easy crossfeed
166 #  Users of headphones may want to try various settings. Has no effect on non-
167 #  stereo modes.
168 #cf_level = 0
170 ## resampler: (global)
171 #  Selects the default resampler used when mixing sources. Valid values are:
172 #  point - nearest sample, no interpolation
173 #  linear - extrapolates samples using a linear slope between samples
174 #  cubic - extrapolates samples using a Catmull-Rom spline
175 #  bsinc12 - extrapolates samples using a band-limited Sinc filter (varying
176 #            between 12 and 24 points, with anti-aliasing)
177 #  fast_bsinc12 - same as bsinc12, except without interpolation between down-
178 #                 sampling scales
179 #  bsinc24 - extrapolates samples using a band-limited Sinc filter (varying
180 #            between 24 and 48 points, with anti-aliasing)
181 #  fast_bsinc24 - same as bsinc24, except without interpolation between down-
182 #                 sampling scales
183 #resampler = linear
185 ## rt-prio: (global)
186 #  Sets the real-time priority value for the mixing thread. Not all drivers may
187 #  use this (eg. PortAudio) as those APIs already control the priority of the
188 #  mixing thread. 0 and negative values will disable real-time priority. Note
189 #  that this may constitute a security risk since a real-time priority thread
190 #  can indefinitely block normal-priority threads if it fails to wait. Disable
191 #  this if it turns out to be a problem.
192 #rt-prio = 1
194 ## rt-time-limit: (global)
195 #  On non-Windows systems, allows reducing the process's RLIMIT_RTTIME resource
196 #  as necessary for acquiring real-time priority from RTKit.
197 #rt-time-limit = true
199 ## sources:
200 #  Sets the maximum number of allocatable sources. Lower values may help for
201 #  systems with apps that try to play more sounds than the CPU can handle.
202 #sources = 256
204 ## slots:
205 #  Sets the maximum number of Auxiliary Effect Slots an app can create. A slot
206 #  can use a non-negligible amount of CPU time if an effect is set on it even
207 #  if no sources are feeding it, so this may help when apps use more than the
208 #  system can handle.
209 #slots = 64
211 ## sends:
212 #  Limits the number of auxiliary sends allowed per source. Setting this higher
213 #  than the default has no effect.
214 #sends = 6
216 ## front-stablizer:
217 #  Applies filters to "stablize" front sound imaging. A psychoacoustic method
218 #  is used to generate a front-center channel signal from the front-left and
219 #  front-right channels, improving the front response by reducing the combing
220 #  artifacts and phase errors. Consequently, it will only work with channel
221 #  configurations that include front-left, front-right, and front-center.
222 #front-stablizer = false
224 ## output-limiter:
225 #  Applies a gain limiter on the final mixed output. This reduces the volume
226 #  when the output samples would otherwise clamp, avoiding excessive clipping
227 #  noise.
228 #output-limiter = true
230 ## dither:
231 #  Applies dithering on the final mix, for 8- and 16-bit output by default.
232 #  This replaces the distortion created by nearest-value quantization with low-
233 #  level whitenoise.
234 #dither = true
236 ## dither-depth:
237 #  Quantization bit-depth for dithered output. A value of 0 (or less) will
238 #  match the output sample depth. For int32, uint32, and float32 output, 0 will
239 #  disable dithering because they're at or beyond the rendered precision. The
240 #  maximum dither depth is 24.
241 #dither-depth = 0
243 ## volume-adjust:
244 #  A global volume adjustment for source output, expressed in decibels. The
245 #  value is logarithmic, so +6 will be a scale of (approximately) 2x, +12 will
246 #  be a scale of 4x, etc. Similarly, -6 will be x1/2, and -12 is about x1/4. A
247 #  value of 0 means no change.
248 #volume-adjust = 0
250 ## excludefx: (global)
251 #  Sets which effects to exclude, preventing apps from using them. This can
252 #  help for apps that try to use effects which are too CPU intensive for the
253 #  system to handle. Available effects are: eaxreverb,reverb,autowah,chorus,
254 #  compressor,distortion,echo,equalizer,flanger,modulator,dedicated,pshifter,
255 #  fshifter,vmorpher.
256 #excludefx =
258 ## default-reverb: (global)
259 #  A reverb preset that applies by default to all sources on send 0
260 #  (applications that set their own slots on send 0 will override this).
261 #  Available presets are: None, Generic, PaddedCell, Room, Bathroom,
262 #  Livingroom, Stoneroom, Auditorium, ConcertHall, Cave, Arena, Hangar,
263 #  CarpetedHallway, Hallway, StoneCorridor, Alley, Forest, City, Moutains,
264 #  Quarry, Plain, ParkingLot, SewerPipe, Underwater, Drugged, Dizzy, Psychotic.
265 #default-reverb =
267 ## trap-alc-error: (global)
268 #  Generates a SIGTRAP signal when an ALC device error is generated, on systems
269 #  that support it. This helps when debugging, while trying to find the cause
270 #  of a device error. On Windows, a breakpoint exception is generated.
271 #trap-alc-error = false
273 ## trap-al-error: (global)
274 #  Generates a SIGTRAP signal when an AL context error is generated, on systems
275 #  that support it. This helps when debugging, while trying to find the cause
276 #  of a context error. On Windows, a breakpoint exception is generated.
277 #trap-al-error = false
280 ## Ambisonic decoder stuff
282 [decoder]
284 ## hq-mode:
285 #  Enables a high-quality ambisonic decoder. This mode is capable of frequency-
286 #  dependent processing, creating a better reproduction of 3D sound rendering
287 #  over surround sound speakers. Enabling this also requires specifying decoder
288 #  configuration files for the appropriate speaker configuration you intend to
289 #  use (see the quad, surround51, etc options below). Currently, up to third-
290 #  order decoding is supported.
291 #hq-mode = true
293 ## distance-comp:
294 #  Enables compensation for the speakers' relative distances to the listener.
295 #  This applies the necessary delays and attenuation to make the speakers
296 #  behave as though they are all equidistant, which is important for proper
297 #  playback of 3D sound rendering. Requires the proper distances to be
298 #  specified in the decoder configuration file.
299 #distance-comp = true
301 ## nfc:
302 #  Enables near-field control filters. This simulates and compensates for low-
303 #  frequency effects caused by the curvature of nearby sound-waves, which
304 #  creates a more realistic perception of sound distance. Note that the effect
305 #  may be stronger or weaker than intended if the application doesn't use or
306 #  specify an appropriate unit scale, or if incorrect speaker distances are set
307 #  in the decoder configuration file.
308 #nfc = false
310 ## nfc-ref-delay
311 #  Specifies the reference delay value for ambisonic output when NFC filters
312 #  are enabled. If channels is set to one of the ambi* formats, this option
313 #  enables NFC-HOA output with the specified Reference Delay parameter. The
314 #  specified value can then be shared with an appropriate NFC-HOA decoder to
315 #  reproduce correct near-field effects. Keep in mind that despite being
316 #  designed for higher-order ambisonics, this also applies to first-order
317 #  output. When left unset, normal output is created with no near-field
318 #  simulation. Requires the nfc option to also be enabled.
319 #nfc-ref-delay =
321 ## quad:
322 #  Decoder configuration file for Quadraphonic channel output. See
323 #  docs/ambdec.txt for a description of the file format.
324 #quad =
326 ## surround51:
327 #  Decoder configuration file for 5.1 Surround (Side and Rear) channel output.
328 #  See docs/ambdec.txt for a description of the file format.
329 #surround51 =
331 ## surround61:
332 #  Decoder configuration file for 6.1 Surround channel output. See
333 #  docs/ambdec.txt for a description of the file format.
334 #surround61 =
336 ## surround71:
337 #  Decoder configuration file for 7.1 Surround channel output. See
338 #  docs/ambdec.txt for a description of the file format. Note: This can be used
339 #  to enable 3D7.1 with the appropriate configuration and speaker placement,
340 #  see docs/3D7.1.txt.
341 #surround71 =
344 ## Reverb effect stuff (includes EAX reverb)
346 [reverb]
348 ## boost: (global)
349 #  A global amplification for reverb output, expressed in decibels. The value
350 #  is logarithmic, so +6 will be a scale of (approximately) 2x, +12 will be a
351 #  scale of 4x, etc. Similarly, -6 will be about half, and -12 about 1/4th. A
352 #  value of 0 means no change.
353 #boost = 0
356 ## PipeWire backend stuff
358 [pipewire]
360 ## assume-audio: (global)
361 #  Causes the backend to succeed initialization even if PipeWire reports no
362 #  audio support. Currently, audio support is detected by the presence of audio
363 #  source or sink nodes, although this can cause false negatives in cases where
364 #  device availability during library initialization is spotty. Future versions
365 #  of PipeWire are expected to have a more robust method to test audio support,
366 #  but in the mean time this can be set to true to assume PipeWire has audio
367 #  support even when no nodes may be reported at initialization time.
368 #assume-audio = false
371 ## PulseAudio backend stuff
373 [pulse]
375 ## spawn-server: (global)
376 #  Attempts to autospawn a PulseAudio server whenever needed (initializing the
377 #  backend, enumerating devices, etc). Setting autospawn to false in Pulse's
378 #  client.conf will still prevent autospawning even if this is set to true.
379 #spawn-server = true
381 ## allow-moves: (global)
382 #  Allows PulseAudio to move active streams to different devices. Note that the
383 #  device specifier (seen by applications) will not be updated when this
384 #  occurs, and neither will the AL device configuration (sample rate, format,
385 #  etc).
386 #allow-moves = true
388 ## fix-rate:
389 #  Specifies whether to match the playback stream's sample rate to the device's
390 #  sample rate. Enabling this forces OpenAL Soft to mix sources and effects
391 #  directly to the actual output rate, avoiding a second resample pass by the
392 #  PulseAudio server.
393 #fix-rate = false
395 ## adjust-latency:
396 #  Attempts to adjust the overall latency of device playback. Note that this
397 #  may have adverse effects on the resulting internal buffer sizes and mixing
398 #  updates, leading to performance problems and drop-outs. However, if the
399 #  PulseAudio server is creating a lot of latency, enabling this may help make
400 #  it more manageable.
401 #adjust-latency = false
404 ## ALSA backend stuff
406 [alsa]
408 ## device: (global)
409 #  Sets the device name for the default playback device.
410 #device = default
412 ## device-prefix: (global)
413 #  Sets the prefix used by the discovered (non-default) playback devices. This
414 #  will be appended with "CARD=c,DEV=d", where c is the card id and d is the
415 #  device index for the requested device name.
416 #device-prefix = plughw:
418 ## device-prefix-*: (global)
419 #  Card- and device-specific prefixes may be used to override the device-prefix
420 #  option. The option may specify the card id (eg, device-prefix-NVidia), or
421 #  the card id and device index (eg, device-prefix-NVidia-0). The card id is
422 #  case-sensitive.
423 #device-prefix- =
425 ## custom-devices: (global)
426 #  Specifies a list of enumerated playback devices and the ALSA devices they
427 #  refer to. The list pattern is "Display Name=ALSA device;...". The display
428 #  names will be returned for device enumeration, and the ALSA device is the
429 #  device name to open for each enumerated device.
430 #custom-devices =
432 ## capture: (global)
433 #  Sets the device name for the default capture device.
434 #capture = default
436 ## capture-prefix: (global)
437 #  Sets the prefix used by the discovered (non-default) capture devices. This
438 #  will be appended with "CARD=c,DEV=d", where c is the card id and d is the
439 #  device number for the requested device name.
440 #capture-prefix = plughw:
442 ## capture-prefix-*: (global)
443 #  Card- and device-specific prefixes may be used to override the
444 #  capture-prefix option. The option may specify the card id (eg,
445 #  capture-prefix-NVidia), or the card id and device index (eg,
446 #  capture-prefix-NVidia-0). The card id is case-sensitive.
447 #capture-prefix- =
449 ## custom-captures: (global)
450 #  Specifies a list of enumerated capture devices and the ALSA devices they
451 #  refer to. The list pattern is "Display Name=ALSA device;...". The display
452 #  names will be returned for device enumeration, and the ALSA device is the
453 #  device name to open for each enumerated device.
454 #custom-captures =
456 ## mmap:
457 #  Sets whether to try using mmap mode (helps reduce latencies and CPU
458 #  consumption). If mmap isn't available, it will automatically fall back to
459 #  non-mmap mode. True, yes, on, and non-0 values will attempt to use mmap. 0
460 #  and anything else will force mmap off.
461 #mmap = true
463 ## allow-resampler:
464 #  Specifies whether to allow ALSA's built-in resampler. Enabling this will
465 #  allow the playback device to be set to a different sample rate than the
466 #  actual output, causing ALSA to apply its own resampling pass after OpenAL
467 #  Soft resamples and mixes the sources and effects for output.
468 #allow-resampler = false
471 ## OSS backend stuff
473 [oss]
475 ## device: (global)
476 #  Sets the device name for OSS output.
477 #device = /dev/dsp
479 ## capture: (global)
480 #  Sets the device name for OSS capture.
481 #capture = /dev/dsp
484 ## Solaris backend stuff
486 [solaris]
488 ## device: (global)
489 #  Sets the device name for Solaris output.
490 #device = /dev/audio
493 ## QSA backend stuff
495 [qsa]
498 ## JACK backend stuff
500 [jack]
502 ## spawn-server: (global)
503 #  Attempts to autospawn a JACK server when initializing.
504 #spawn-server = false
506 ## custom-devices: (global)
507 #  Specifies a list of enumerated devices and the ports they connect to. The
508 #  list pattern is "Display Name=ports regex;Display Name=ports regex;...". The
509 #  display names will be returned for device enumeration, and the ports regex
510 #  is the regular expression to identify the target ports on the server (as
511 #  given by the jack_get_ports function) for each enumerated device.
512 #custom-devices =
514 ## rt-mix:
515 #  Renders samples directly in the real-time processing callback. This allows
516 #  for lower latency and less overall CPU utilization, but can increase the
517 #  risk of underruns when increasing the amount of work the mixer needs to do.
518 #rt-mix = true
520 ## connect-ports:
521 #  Attempts to automatically connect the client ports to physical server ports.
522 #  Client ports that fail to connect will leave the remaining channels
523 #  unconnected and silent (the device format won't change to accommodate).
524 #connect-ports = true
526 ## buffer-size:
527 #  Sets the update buffer size, in samples, that the backend will keep buffered
528 #  to handle the server's real-time processing requests. This value must be a
529 #  power of 2, or else it will be rounded up to the next power of 2. If it is
530 #  less than JACK's buffer update size, it will be clamped. This option may
531 #  be useful in case the server's update size is too small and doesn't give the
532 #  mixer time to keep enough audio available for the processing requests.
533 #  Ignored when rt-mix is true.
534 #buffer-size = 0
537 ## WASAPI backend stuff
539 [wasapi]
542 ## DirectSound backend stuff
544 [dsound]
547 ## Windows Multimedia backend stuff
549 [winmm]
552 ## PortAudio backend stuff
554 [port]
556 ## device: (global)
557 #  Sets the device index for output. Negative values will use the default as
558 #  given by PortAudio itself.
559 #device = -1
561 ## capture: (global)
562 #  Sets the device index for capture. Negative values will use the default as
563 #  given by PortAudio itself.
564 #capture = -1
567 ## Wave File Writer stuff
569 [wave]
571 ## file: (global)
572 #  Sets the filename of the wave file to write to. An empty name prevents the
573 #  backend from opening, even when explicitly requested.
574 #  THIS WILL OVERWRITE EXISTING FILES WITHOUT QUESTION!
575 #file =
577 ## bformat: (global)
578 #  Creates AMB format files using first-order ambisonics instead of a standard
579 #  single- or multi-channel .wav file.
580 #bformat = false
583 ## EAX extensions stuff
585 [eax]
586 ##enable:
587 #  Sets whether to enable EAX extensions or not.
588 #enable = true