diff options
author | Chris Robinson <[email protected]> | 2014-11-08 05:59:08 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-11-08 05:59:08 -0800 |
commit | c053617066b7cabc185fa72090dadee2e9801ea5 (patch) | |
tree | 215cf9facc38f1f8f3d77fa8f8a789c75becc8e4 /alsoftrc.sample | |
parent | 3904a3f033ff2060bc8394164b437dabaf851046 (diff) |
Reorder some options in the config sample
Diffstat (limited to 'alsoftrc.sample')
-rw-r--r-- | alsoftrc.sample | 82 |
1 files changed, 41 insertions, 41 deletions
diff --git a/alsoftrc.sample b/alsoftrc.sample index 7ff618cc..cd85fc83 100644 --- a/alsoftrc.sample +++ b/alsoftrc.sample @@ -30,6 +30,15 @@ # 'all' disables use of all such specialized methods. #disable-cpu-exts = +## drivers: +# Sets the backend driver list order, comma-seperated. Unknown backends and +# duplicated names are ignored. Unlisted backends won't be considered for use +# unless the list is ended with a comma (e.g. 'oss,' will try OSS first before +# other backends, while 'oss' will try OSS only). Backends prepended with - +# won't be considered for use (e.g. '-oss,' will try all available backends +# except OSS). An empty list means to try all backends. +#drivers = + ## channels: # Sets the output channel configuration. If left unspecified, one will try to # be detected from the system, and defaulting to stereo. The available values @@ -48,6 +57,23 @@ # float32 - 32-bit float #sample-type = float32 +## frequency: +# Sets the output frequency. If left unspecified it will try to detect a +# default from the system, otherwise it will default to 44100. +#frequency = + +## period_size: +# Sets the update period size, in frames. This is the number of frames needed +# for each mixing update. Acceptable values range between 64 and 8192. +#period_size = 1024 + +## periods: +# Sets the number of update periods. Higher values create a larger mix ahead, +# which helps protect against skips when the CPU is under load, but increases +# the delay between a sound getting mixed and being heard. Acceptable values +# range between 2 and 16. +#periods = 4 + ## hrtf: # Enables HRTF filters. These filters provide for better sound spatialization # while using headphones. The default filter will only work when output is @@ -84,19 +110,6 @@ # stereo modes. #cf_level = 0 -## wide-stereo: -# Specifies that stereo sources are given a width of about 120 degrees on each -# channel, centering on -90 (left) and +90 (right), as opposed to being points -# placed at -30 (left) and +30 (right). This can be useful for surround-sound -# to give stereo sources a more encompassing sound. Note that the sound's -# overall volume will be slightly reduced to account for the extra output. -#wide-stereo = false - -## frequency: -# Sets the output frequency. If left unspecified it will try to detect a -# default from the system, otherwise it will default to 44100. -#frequency = - ## resampler: # Selects the resampler used when mixing sources. Valid values are: # point - nearest sample, no interpolation @@ -105,6 +118,14 @@ # Specifying other values will result in using the default (linear). #resampler = linear +## wide-stereo: +# Specifies that stereo sources are given a width of about 120 degrees on each +# channel, centering on -90 (left) and +90 (right), as opposed to being points +# placed at -30 (left) and +30 (right). This can be useful for surround-sound +# to give stereo sources a more encompassing sound. Note that the sound's +# overall volume will be slightly reduced to account for the extra output. +#wide-stereo = false + ## rt-prio: # Sets real-time priority for the mixing thread. Not all drivers may use this # (eg. PortAudio) as they already control the priority of the mixing thread. @@ -114,39 +135,11 @@ # disabled. #rt-prio = 0 -## period_size: -# Sets the update period size, in frames. This is the number of frames needed -# for each mixing update. Acceptable values range between 64 and 8192. -#period_size = 1024 - -## periods: -# Sets the number of update periods. Higher values create a larger mix ahead, -# which helps protect against skips when the CPU is under load, but increases -# the delay between a sound getting mixed and being heard. Acceptable values -# range between 2 and 16. -#periods = 4 - ## sources: # Sets the maximum number of allocatable sources. Lower values may help for # systems with apps that try to play more sounds than the CPU can handle. #sources = 256 -## drivers: -# Sets the backend driver list order, comma-seperated. Unknown backends and -# duplicated names are ignored. Unlisted backends won't be considered for use -# unless the list is ended with a comma (e.g. 'oss,' will try OSS first before -# other backends, while 'oss' will try OSS only). Backends prepended with - -# won't be considered for use (e.g. '-oss,' will try all available backends -# except OSS). An empty list means to try all backends. -#drivers = - -## excludefx: -# Sets which effects to exclude, preventing apps from using them. This can -# help for apps that try to use effects which are too CPU intensive for the -# system to handle. Available effects are: eaxreverb,reverb,autowah,chorus, -# compressor,distortion,echo,equalizer,flanger,modulator,dedicated -#excludefx = - ## slots: # Sets the maximum number of Auxiliary Effect Slots an app can create. A slot # can use a non-negligible amount of CPU time if an effect is set on it even @@ -160,6 +153,13 @@ # possible is 4. #sends = +## excludefx: +# Sets which effects to exclude, preventing apps from using them. This can +# help for apps that try to use effects which are too CPU intensive for the +# system to handle. Available effects are: eaxreverb,reverb,autowah,chorus, +# compressor,distortion,echo,equalizer,flanger,modulator,dedicated +#excludefx = + ## layout: # Sets the virtual speaker layout. Values are specified in degrees, where 0 is # straight in front, negative goes left, and positive goes right. Unspecified |