🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

502 lines
19 KiB

  1. # OpenAL config file.
  2. #
  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 "$$".
  10. #
  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.
  16. #
  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
  20. #
  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:
  25. ##
  26. ## General stuff
  27. ##
  28. [general]
  29. ## disable-cpu-exts: (global)
  30. # Disables use of specialized methods that use specific CPU intrinsics.
  31. # Certain methods may utilize CPU extensions for improved performance, and
  32. # this option is useful for preventing some or all of those methods from being
  33. # used. The available extensions are: sse, sse2, sse3, sse4.1, and neon.
  34. # Specifying 'all' disables use of all such specialized methods.
  35. #disable-cpu-exts =
  36. ## drivers: (global)
  37. # Sets the backend driver list order, comma-seperated. Unknown backends and
  38. # duplicated names are ignored. Unlisted backends won't be considered for use
  39. # unless the list is ended with a comma (e.g. 'oss,' will try OSS first before
  40. # other backends, while 'oss' will try OSS only). Backends prepended with -
  41. # won't be considered for use (e.g. '-oss,' will try all available backends
  42. # except OSS). An empty list means to try all backends.
  43. #drivers =
  44. ## channels:
  45. # Sets the output channel configuration. If left unspecified, one will try to
  46. # be detected from the system, and defaulting to stereo. The available values
  47. # are: mono, stereo, quad, surround51, surround51rear, surround61, surround71,
  48. # ambi1, ambi2, ambi3. Note that the ambi* configurations provide ambisonic
  49. # channels of the given order (using ACN ordering and SN3D normalization by
  50. # default), which need to be decoded to play correctly on speakers.
  51. #channels =
  52. ## sample-type:
  53. # Sets the output sample type. Currently, all mixing is done with 32-bit float
  54. # and converted to the output sample type as needed. Available values are:
  55. # int8 - signed 8-bit int
  56. # uint8 - unsigned 8-bit int
  57. # int16 - signed 16-bit int
  58. # uint16 - unsigned 16-bit int
  59. # int32 - signed 32-bit int
  60. # uint32 - unsigned 32-bit int
  61. # float32 - 32-bit float
  62. #sample-type = float32
  63. ## frequency:
  64. # Sets the output frequency. If left unspecified it will try to detect a
  65. # default from the system, otherwise it will default to 44100.
  66. #frequency =
  67. ## period_size:
  68. # Sets the update period size, in sample frames. This is the number of frames
  69. # needed for each mixing update. Acceptable values range between 64 and 8192.
  70. # If left unspecified it will default to 1/50th of the frequency (20ms, or 882
  71. # for 44100, 960 for 48000, etc).
  72. #period_size =
  73. ## periods:
  74. # Sets the number of update periods. Higher values create a larger mix ahead,
  75. # which helps protect against skips when the CPU is under load, but increases
  76. # the delay between a sound getting mixed and being heard. Acceptable values
  77. # range between 2 and 16.
  78. #periods = 3
  79. ## stereo-mode:
  80. # Specifies if stereo output is treated as being headphones or speakers. With
  81. # headphones, HRTF or crossfeed filters may be used for better audio quality.
  82. # Valid settings are auto, speakers, and headphones.
  83. #stereo-mode = auto
  84. ## stereo-encoding:
  85. # Specifies the encoding method for non-HRTF stereo output. 'panpot' (default)
  86. # uses standard amplitude panning (aka pair-wise, stereo pair, etc) between
  87. # -30 and +30 degrees, while 'uhj' creates stereo-compatible two-channel UHJ
  88. # output, which encodes some surround sound information into stereo output
  89. # that can be decoded with a surround sound receiver. If crossfeed filters are
  90. # used, UHJ is disabled.
  91. #stereo-encoding = panpot
  92. ## ambi-format:
  93. # Specifies the channel order and normalization for the "ambi*" set of channel
  94. # configurations. Valid settings are: fuma, ambix (or acn+sn3d), acn+n3d
  95. #ambi-format = ambix
  96. ## hrtf:
  97. # Controls HRTF processing. These filters provide better spatialization of
  98. # sounds while using headphones, but do require a bit more CPU power. The
  99. # default filters will only work with 44100hz or 48000hz stereo output. While
  100. # HRTF is used, the cf_level option is ignored. Setting this to auto (default)
  101. # will allow HRTF to be used when headphones are detected or the app requests
  102. # it, while setting true or false will forcefully enable or disable HRTF
  103. # respectively.
  104. #hrtf = auto
  105. ## default-hrtf:
  106. # Specifies the default HRTF to use. When multiple HRTFs are available, this
  107. # determines the preferred one to use if none are specifically requested. Note
  108. # that this is the enumerated HRTF name, not necessarily the filename.
  109. #default-hrtf =
  110. ## hrtf-paths:
  111. # Specifies a comma-separated list of paths containing HRTF data sets. The
  112. # format of the files are described in docs/hrtf.txt. The files within the
  113. # directories must have the .mhr file extension to be recognized. By default,
  114. # OS-dependent data paths will be used. They will also be used if the list
  115. # ends with a comma. On Windows this is:
  116. # $AppData\openal\hrtf
  117. # And on other systems, it's (in order):
  118. # $XDG_DATA_HOME/openal/hrtf (defaults to $HOME/.local/share/openal/hrtf)
  119. # $XDG_DATA_DIRS/openal/hrtf (defaults to /usr/local/share/openal/hrtf and
  120. # /usr/share/openal/hrtf)
  121. #hrtf-paths =
  122. ## cf_level:
  123. # Sets the crossfeed level for stereo output. Valid values are:
  124. # 0 - No crossfeed
  125. # 1 - Low crossfeed
  126. # 2 - Middle crossfeed
  127. # 3 - High crossfeed (virtual speakers are closer to itself)
  128. # 4 - Low easy crossfeed
  129. # 5 - Middle easy crossfeed
  130. # 6 - High easy crossfeed
  131. # Users of headphones may want to try various settings. Has no effect on non-
  132. # stereo modes.
  133. #cf_level = 0
  134. ## resampler: (global)
  135. # Selects the resampler used when mixing sources. Valid values are:
  136. # point - nearest sample, no interpolation
  137. # linear - extrapolates samples using a linear slope between samples
  138. # cubic - extrapolates samples using a Catmull-Rom spline
  139. # bsinc12 - extrapolates samples using a band-limited Sinc filter (varying
  140. # between 12 and 24 points, with anti-aliasing)
  141. # bsinc24 - extrapolates samples using a band-limited Sinc filter (varying
  142. # between 24 and 48 points, with anti-aliasing)
  143. #resampler = linear
  144. ## rt-prio: (global)
  145. # Sets real-time priority for the mixing thread. Not all drivers may use this
  146. # (eg. PortAudio) as they already control the priority of the mixing thread.
  147. # 0 and negative values will disable it. Note that this may constitute a
  148. # security risk since a real-time priority thread can indefinitely block
  149. # normal-priority threads if it fails to wait. As such, the default is
  150. # disabled.
  151. #rt-prio = 0
  152. ## sources:
  153. # Sets the maximum number of allocatable sources. Lower values may help for
  154. # systems with apps that try to play more sounds than the CPU can handle.
  155. #sources = 256
  156. ## slots:
  157. # Sets the maximum number of Auxiliary Effect Slots an app can create. A slot
  158. # can use a non-negligible amount of CPU time if an effect is set on it even
  159. # if no sources are feeding it, so this may help when apps use more than the
  160. # system can handle.
  161. #slots = 64
  162. ## sends:
  163. # Limits the number of auxiliary sends allowed per source. Setting this higher
  164. # than the default has no effect.
  165. #sends = 16
  166. ## front-stablizer:
  167. # Applies filters to "stablize" front sound imaging. A psychoacoustic method
  168. # is used to generate a front-center channel signal from the front-left and
  169. # front-right channels, improving the front response by reducing the combing
  170. # artifacts and phase errors. Consequently, it will only work with channel
  171. # configurations that include front-left, front-right, and front-center.
  172. #front-stablizer = false
  173. ## output-limiter:
  174. # Applies a gain limiter on the final mixed output. This reduces the volume
  175. # when the output samples would otherwise clamp, avoiding excessive clipping
  176. # noise.
  177. #output-limiter = true
  178. ## dither:
  179. # Applies dithering on the final mix, for 8- and 16-bit output by default.
  180. # This replaces the distortion created by nearest-value quantization with low-
  181. # level whitenoise.
  182. #dither = true
  183. ## dither-depth:
  184. # Quantization bit-depth for dithered output. A value of 0 (or less) will
  185. # match the output sample depth. For int32, uint32, and float32 output, 0 will
  186. # disable dithering because they're at or beyond the rendered precision. The
  187. # maximum dither depth is 24.
  188. #dither-depth = 0
  189. ## volume-adjust:
  190. # A global volume adjustment for source output, expressed in decibels. The
  191. # value is logarithmic, so +6 will be a scale of (approximately) 2x, +12 will
  192. # be a scale of 4x, etc. Similarly, -6 will be x1/2, and -12 is about x1/4. A
  193. # value of 0 means no change.
  194. #volume-adjust = 0
  195. ## excludefx: (global)
  196. # Sets which effects to exclude, preventing apps from using them. This can
  197. # help for apps that try to use effects which are too CPU intensive for the
  198. # system to handle. Available effects are: eaxreverb,reverb,autowah,chorus,
  199. # compressor,distortion,echo,equalizer,flanger,modulator,dedicated,pshifter,
  200. # fshifter
  201. #excludefx =
  202. ## default-reverb: (global)
  203. # A reverb preset that applies by default to all sources on send 0
  204. # (applications that set their own slots on send 0 will override this).
  205. # Available presets are: None, Generic, PaddedCell, Room, Bathroom,
  206. # Livingroom, Stoneroom, Auditorium, ConcertHall, Cave, Arena, Hangar,
  207. # CarpetedHallway, Hallway, StoneCorridor, Alley, Forest, City, Moutains,
  208. # Quarry, Plain, ParkingLot, SewerPipe, Underwater, Drugged, Dizzy, Psychotic.
  209. #default-reverb =
  210. ## trap-alc-error: (global)
  211. # Generates a SIGTRAP signal when an ALC device error is generated, on systems
  212. # that support it. This helps when debugging, while trying to find the cause
  213. # of a device error. On Windows, a breakpoint exception is generated.
  214. #trap-alc-error = false
  215. ## trap-al-error: (global)
  216. # Generates a SIGTRAP signal when an AL context error is generated, on systems
  217. # that support it. This helps when debugging, while trying to find the cause
  218. # of a context error. On Windows, a breakpoint exception is generated.
  219. #trap-al-error = false
  220. ##
  221. ## Ambisonic decoder stuff
  222. ##
  223. [decoder]
  224. ## hq-mode:
  225. # Enables a high-quality ambisonic decoder. This mode is capable of frequency-
  226. # dependent processing, creating a better reproduction of 3D sound rendering
  227. # over surround sound speakers. Enabling this also requires specifying decoder
  228. # configuration files for the appropriate speaker configuration you intend to
  229. # use (see the quad, surround51, etc options below). Currently, up to third-
  230. # order decoding is supported.
  231. hq-mode = false
  232. ## distance-comp:
  233. # Enables compensation for the speakers' relative distances to the listener.
  234. # This applies the necessary delays and attenuation to make the speakers
  235. # behave as though they are all equidistant, which is important for proper
  236. # playback of 3D sound rendering. Requires the proper distances to be
  237. # specified in the decoder configuration file.
  238. distance-comp = true
  239. ## nfc:
  240. # Enables near-field control filters. This simulates and compensates for low-
  241. # frequency effects caused by the curvature of nearby sound-waves, which
  242. # creates a more realistic perception of sound distance. Note that the effect
  243. # may be stronger or weaker than intended if the application doesn't use or
  244. # specify an appropriate unit scale, or if incorrect speaker distances are set
  245. # in the decoder configuration file.
  246. nfc = false
  247. ## nfc-ref-delay
  248. # Specifies the reference delay value for ambisonic output when NFC filters
  249. # are enabled. If channels is set to one of the ambi* formats, this option
  250. # enables NFC-HOA output with the specified Reference Delay parameter. The
  251. # specified value can then be shared with an appropriate NFC-HOA decoder to
  252. # reproduce correct near-field effects. Keep in mind that despite being
  253. # designed for higher-order ambisonics, this also applies to first-order
  254. # output. When left unset, normal output is created with no near-field
  255. # simulation. Requires the nfc option to also be enabled.
  256. nfc-ref-delay =
  257. ## quad:
  258. # Decoder configuration file for Quadraphonic channel output. See
  259. # docs/ambdec.txt for a description of the file format.
  260. quad =
  261. ## surround51:
  262. # Decoder configuration file for 5.1 Surround (Side and Rear) channel output.
  263. # See docs/ambdec.txt for a description of the file format.
  264. surround51 =
  265. ## surround61:
  266. # Decoder configuration file for 6.1 Surround channel output. See
  267. # docs/ambdec.txt for a description of the file format.
  268. surround61 =
  269. ## surround71:
  270. # Decoder configuration file for 7.1 Surround channel output. See
  271. # docs/ambdec.txt for a description of the file format. Note: This can be used
  272. # to enable 3D7.1 with the appropriate configuration and speaker placement,
  273. # see docs/3D7.1.txt.
  274. surround71 =
  275. ##
  276. ## Reverb effect stuff (includes EAX reverb)
  277. ##
  278. [reverb]
  279. ## boost: (global)
  280. # A global amplification for reverb output, expressed in decibels. The value
  281. # is logarithmic, so +6 will be a scale of (approximately) 2x, +12 will be a
  282. # scale of 4x, etc. Similarly, -6 will be about half, and -12 about 1/4th. A
  283. # value of 0 means no change.
  284. #boost = 0
  285. ##
  286. ## PulseAudio backend stuff
  287. ##
  288. [pulse]
  289. ## spawn-server: (global)
  290. # Attempts to autospawn a PulseAudio server whenever needed (initializing the
  291. # backend, enumerating devices, etc). Setting autospawn to false in Pulse's
  292. # client.conf will still prevent autospawning even if this is set to true.
  293. #spawn-server = true
  294. ## allow-moves: (global)
  295. # Allows PulseAudio to move active streams to different devices. Note that the
  296. # device specifier (seen by applications) will not be updated when this
  297. # occurs, and neither will the AL device configuration (sample rate, format,
  298. # etc).
  299. #allow-moves = true
  300. ## fix-rate:
  301. # Specifies whether to match the playback stream's sample rate to the device's
  302. # sample rate. Enabling this forces OpenAL Soft to mix sources and effects
  303. # directly to the actual output rate, avoiding a second resample pass by the
  304. # PulseAudio server.
  305. #fix-rate = false
  306. ## adjust-latency:
  307. # Attempts to adjust the overall latency of device playback. Note that this
  308. # may have adverse effects on the resulting internal buffer sizes and mixing
  309. # updates, leading to performance problems and drop-outs. However, if the
  310. # PulseAudio server is creating a lot of latency, enabling this may help make
  311. # it more manageable.
  312. #adjust-latency = false
  313. ##
  314. ## ALSA backend stuff
  315. ##
  316. [alsa]
  317. ## device: (global)
  318. # Sets the device name for the default playback device.
  319. #device = default
  320. ## device-prefix: (global)
  321. # Sets the prefix used by the discovered (non-default) playback devices. This
  322. # will be appended with "CARD=c,DEV=d", where c is the card id and d is the
  323. # device index for the requested device name.
  324. #device-prefix = plughw:
  325. ## device-prefix-*: (global)
  326. # Card- and device-specific prefixes may be used to override the device-prefix
  327. # option. The option may specify the card id (eg, device-prefix-NVidia), or
  328. # the card id and device index (eg, device-prefix-NVidia-0). The card id is
  329. # case-sensitive.
  330. #device-prefix- =
  331. ## capture: (global)
  332. # Sets the device name for the default capture device.
  333. #capture = default
  334. ## capture-prefix: (global)
  335. # Sets the prefix used by the discovered (non-default) capture devices. This
  336. # will be appended with "CARD=c,DEV=d", where c is the card id and d is the
  337. # device number for the requested device name.
  338. #capture-prefix = plughw:
  339. ## capture-prefix-*: (global)
  340. # Card- and device-specific prefixes may be used to override the
  341. # capture-prefix option. The option may specify the card id (eg,
  342. # capture-prefix-NVidia), or the card id and device index (eg,
  343. # capture-prefix-NVidia-0). The card id is case-sensitive.
  344. #capture-prefix- =
  345. ## mmap:
  346. # Sets whether to try using mmap mode (helps reduce latencies and CPU
  347. # consumption). If mmap isn't available, it will automatically fall back to
  348. # non-mmap mode. True, yes, on, and non-0 values will attempt to use mmap. 0
  349. # and anything else will force mmap off.
  350. #mmap = true
  351. ## allow-resampler:
  352. # Specifies whether to allow ALSA's built-in resampler. Enabling this will
  353. # allow the playback device to be set to a different sample rate than the
  354. # actual output, causing ALSA to apply its own resampling pass after OpenAL
  355. # Soft resamples and mixes the sources and effects for output.
  356. #allow-resampler = false
  357. ##
  358. ## OSS backend stuff
  359. ##
  360. [oss]
  361. ## device: (global)
  362. # Sets the device name for OSS output.
  363. #device = /dev/dsp
  364. ## capture: (global)
  365. # Sets the device name for OSS capture.
  366. #capture = /dev/dsp
  367. ##
  368. ## Solaris backend stuff
  369. ##
  370. [solaris]
  371. ## device: (global)
  372. # Sets the device name for Solaris output.
  373. #device = /dev/audio
  374. ##
  375. ## QSA backend stuff
  376. ##
  377. [qsa]
  378. ##
  379. ## JACK backend stuff
  380. ##
  381. [jack]
  382. ## spawn-server: (global)
  383. # Attempts to autospawn a JACK server whenever needed (initializing the
  384. # backend, opening devices, etc).
  385. #spawn-server = false
  386. ## buffer-size:
  387. # Sets the update buffer size, in samples, that the backend will keep buffered
  388. # to handle the server's real-time processing requests. This value must be a
  389. # power of 2, or else it will be rounded up to the next power of 2. If it is
  390. # less than JACK's buffer update size, it will be clamped. This option may
  391. # be useful in case the server's update size is too small and doesn't give the
  392. # mixer time to keep enough audio available for the processing requests.
  393. #buffer-size = 0
  394. ##
  395. ## WASAPI backend stuff
  396. ##
  397. [wasapi]
  398. ##
  399. ## DirectSound backend stuff
  400. ##
  401. [dsound]
  402. ##
  403. ## Windows Multimedia backend stuff
  404. ##
  405. [winmm]
  406. ##
  407. ## PortAudio backend stuff
  408. ##
  409. [port]
  410. ## device: (global)
  411. # Sets the device index for output. Negative values will use the default as
  412. # given by PortAudio itself.
  413. #device = -1
  414. ## capture: (global)
  415. # Sets the device index for capture. Negative values will use the default as
  416. # given by PortAudio itself.
  417. #capture = -1
  418. ##
  419. ## Wave File Writer stuff
  420. ##
  421. [wave]
  422. ## file: (global)
  423. # Sets the filename of the wave file to write to. An empty name prevents the
  424. # backend from opening, even when explicitly requested.
  425. # THIS WILL OVERWRITE EXISTING FILES WITHOUT QUESTION!
  426. #file =
  427. ## bformat: (global)
  428. # Creates AMB format files using first-order ambisonics instead of a standard
  429. # single- or multi-channel .wav file.
  430. #bformat = false