Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-11-17 | in server mode full-duplex device is no more requierd, remove | Alexandre Ratchov | |
corresponding entry from BUGS section | |||
2008-11-17 | allow aucat to run as server in play-only and record-only mode, so | Alexandre Ratchov | |
it can be used on play-only, record-only and half-duplex devices. ok jakemsr | |||
2008-11-16 | trigger rproc->eof() and and wproc->hup() if POLLHUP event is set. | Alexandre Ratchov | |
Fixes aucat sleeping forever when the devices disappears | |||
2008-11-16 | aucat stops the device when idle, remove the corresponding | Alexandre Ratchov | |
entry from BUGS section. | |||
2008-11-16 | allow aucat to listen on multiple sockets. Each socket carries its | Alexandre Ratchov | |
channel and volume settings allowing multiple configuration to coexist. Mostly useful for envy(4)-like devices, but can be used to force different apps to use different settings. | |||
2008-11-16 | add ``template'' parameters to sockets rather than using device | Alexandre Ratchov | |
parameters. No functional change. | |||
2008-11-16 | tweak previous; | Jason McIntyre | |
2008-11-16 | make aucat compile without DEBUG defined (still defined by default) | Alexandre Ratchov | |
2008-11-16 | in file_poll() the number of polled file structures is not equal to the | Alexandre Ratchov | |
number of polled descriptors. Count the number of polled structrues to detect deadlocks rather than the number of descriptors, avoinding false positives. | |||
2008-11-16 | Make clients inherit the volume parameter when the -v option is used in | Alexandre Ratchov | |
server mode. It gives the maximum volume a client may have. This wastes dynamic range, but allows volume to stay constant when other clients connect or disconnect. | |||
2008-11-15 | update the readme a bit by deleting most of the irrelevant info, such as msdos | Ted Unangst | |
support and who to mail for 5" floppies... ok kjell | |||
2008-11-15 | classic C compatibility (no statements before decls) | Theo de Raadt | |
2008-11-14 | add back acsite.m4 | Todd C. Miller | |
2008-11-14 | Upgrade to sudo 1.7. See the WHATSNEW files for details. | Todd C. Miller | |
2008-11-14 | Upgrade to sudo 1.7. See the WHATSNEW files for details. | Todd C. Miller | |
2008-11-13 | Backout previous commit, there are still some issues with it. | Landry Breuil | |
ok sthen@ | |||
2008-11-12 | when destroying the device, mark the mixer and the demultiplexer | Alexandre Ratchov | |
for ``AUTOQUIT'' first, and then call file_eof() and friends. fixes crashes sthen@ noticed on zaurus | |||
2008-11-12 | Usage -> usage. | Igor Sobrado | |
2008-11-11 | if the device disappear the mixer and demultiplexer chains are | Alexandre Ratchov | |
destroyed. If this happen then warn and exit, rather than crashing. | |||
2008-11-11 | remove the SIGNALS sections, describe signals in DESCRIPTION | Alexandre Ratchov | |
from jmc@ | |||
2008-11-11 | expose the volume knob in server mode too | Alexandre Ratchov | |
2008-11-11 | termninate non-server aucat when it's idle rather that using | Alexandre Ratchov | |
the hackish {MIX,SUB}_AUTOQUIT features. This way we don't have to care about possible references on destroyed objects. | |||
2008-11-11 | when not in server mode, aucat terminates automatically using | Alexandre Ratchov | |
the {MIX,SUB}_AUTAQUIT features. In this case we're not allowed to directly touch dev_mix and dev_sub because they can disappar. So disable the ``suspend'' and ``quit'' bits when {MIX,SUB}_AUTAQUIT are used. | |||
2008-11-11 | allocate job only when it's needed. | Marc Espie | |
okay otto@ | |||
2008-11-11 | escape minus signs; | Jason McIntyre | |
2008-11-11 | for sshd -T print 'permitopen any' vs. 'permitopen' for case of no | Kevin Steves | |
permitopen's; ok and input dtucker@ | |||
2008-11-11 | USE_AFS not referenced so remove #ifdef. fixes sshd -T not printing | Kevin Steves | |
kerberosgetafstoken. ok dtucker@ | |||
2008-11-10 | add a per-stream ``soft volume'' knob and the corresponding -v option. | Alexandre Ratchov | |
The code will be useful later for the volume knob in the sndio API. | |||
2008-11-10 | missing static | Marc Espie | |
2008-11-10 | adjust comment to reflect reality (CompatRunCommand is gone) | Marc Espie | |
2008-11-09 | the extra kget() macro just befuddles the things we need to replace with a ↵ | Theo de Raadt | |
sysctl mechanism later | |||
2008-11-09 | protect against .orig files resulting from a patch. | Marc Espie | |
2008-11-09 | make aucat(1) stop automatically the audio(1) device if it's idle. This | Alexandre Ratchov | |
way, when in server mode, it consumes no CPU if there are no clients. Later, this will allow to start aucat(1) at session or system startup. | |||
2008-11-09 | typo fixed (overriden -> overridden) | Tobias Stoeckmann | |
ok espie, jmc | |||
2008-11-09 | Removed unneeded conversion from RCSNUM to string in rcs_rev_setlog. | Tobias Stoeckmann | |
oki joris@ | |||
2008-11-08 | sort; | Jason McIntyre | |
2008-11-08 | Support for retrieving revisions from branches in branches was missing. | Tobias Stoeckmann | |
Reported by chl@, ok joris@ | |||
2008-11-08 | set the default device to /dev/audio for legacy mode. | Alexandre Ratchov | |
From Thomas Pfaff <tpfaff _at_ agderlink.no> and tweaks from me | |||
2008-11-08 | when dev_attach()ing play-only or record-only streams, don't | Alexandre Ratchov | |
use both play and record parameters (one of them might be NULL, causing aucat to segfault). | |||
2008-11-08 | from reed@netbsd: | Jason McIntyre | |
Be consistent: document the birthtime field of struct stat for the "B" field specifier. | |||
2008-11-08 | Add malloc and buckets views that display kernel malloc statistics similar | Can Erkin Acar | |
to vmstat -m | |||
2008-11-08 | fix format string | Charles Longeau | |
ok otto@ | |||
2008-11-07 | Move JPAKE define to make life easier for portable. ok djm@ | Darren Tucker | |
2008-11-07 | expose the block size in the sndio API by making par->round writable | Alexandre Ratchov | |
and thus remove the ugly rate <-> block-size table from sio_setpar(3). Handle the block size negociation in aucat(1), since it has few constrains the code is overally simpler. ok jakemsr@, major crank suggested by deraadt@ | |||
2008-11-07 | add space to some log/debug messages for readability; ok djm@ markus@ | Kevin Steves | |
2008-11-07 | spelling/typo in comment | Kevin Steves | |
2008-11-07 | when attaching a new stream, don't overwrite it's parameters | Alexandre Ratchov | |
with the emulated ones (otherwise the next time it's attached conversions will not be setup). | |||
2008-11-06 | drop/silence calculation is wrong when xrun occurs and client and | Alexandre Ratchov | |
device number of channels are not the same. The bug was hidden until now, because mixer and demux input and outputs used to have the same frame size. | |||
2008-11-06 | add a description for the recently added c-mode. | Igor Sobrado | |
ok jmc@ | |||
2008-11-06 | -Wall -Wshadow clean, no binary change | Damien Miller | |