aboutsummaryrefslogtreecommitdiff
path: root/sys/tools/sound/snd_fxdiv_gen.awk
Commit message (Collapse)AuthorAgeFilesLines
* sys: Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-05-121-1/+1
| | | | | | | | | The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of BSD-2-Clause. Discussed with: pfg MFC After: 3 days Sponsored by: Netflix
* sys: general adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
| | | | | | | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. No functional change intended. Notes: svn path=/head/; revision=326272
* Declare the "snd_fxdiv_table" once. This shaves around 24Kbytes ofHans Petter Selasky2017-05-251-2/+5
| | | | | | | | | binary data from sound.ko and the kernel. MFC after: 3 days Notes: svn path=/head/; revision=318860
* Increase the allowed maximum number of audio channels from 31 to 127Hans Petter Selasky2017-05-241-3/+3
| | | | | | | | | | | | | in the PCM feeder mixer. Without this change a value of 32 channels is treated like zero, due to using a mask of 0x1f, causing a kernel assert when trying to playback bitperfect 32-channel audio. Also update the AWK script which is generating the division tables to handle more than 18 channels. This commit complements r282650. MFC after: 3 days Notes: svn path=/head/; revision=318820
* Move all sound related scripts to its own 'sound' subdir.Ariff Abdullah2009-06-101-0/+142
Suggested by: jmallett Notes: svn path=/head/; revision=193889