Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
the usage string, and just say that for historic reasons aucat behaves
like sndiod.
with help from jmc@
|
|
in server mode even when not invoked as sndiod. This allows aucat and
the new sndiod daemon to live together in /usr/bin, which makes easy
to quickly compare sndiod and aucat (and spot possible regressions)
without having to modify /usr/bin.
|
|
|
|
this way they can be defined at compilation time
|
|
when appropriate. From Michael W. Bombardieri <mb at ii.net>
|
|
from Remco <remco at d-compu.dyndns.org>. Thanks
|
|
as NULL has. This will (hopefully) simplify ports where the user
passes the device string.
|
|
suggested by deraadt@
|
|
Workarounds stuttering caused by something hogging the cpu in kernel
mode and preventing sndiod from running at time.
ok deraadt
|
|
settings ensure video players and programs using MTC are smooth by
default. Thanks to all who tested.
|
|
device was already created (-f) before trying to use the
default one, otherwise all sub-devices end up attached
to the default device. Noticed by peters at schwertfisch.de,
thanks!
|
|
from jmc
|
|
options.
|
|
|
|
the old midithru implementation; less code, less bugs. As a side
effect, midi output doesn't implement running status "compression"
any more.
|
|
dev. Allows volume settings to be saved while the device is kept
closed. Besides that, no behabiour changes.
|
|
single aucat instance to handle all audio and MIDI services. Since
this partially breaks compatibility, this is a opportunitiy to fix few
other design mistakes (eg ':' being used by inet6, type name vs api
name confusion, etc..). This leads to the following names:
type[@hostname][,unit]/devnum[.option]
The device number is the minor device number for direct hardware
access (ie the 'N' in /dev/audioN). For aucat, this is the occurence
number of the -f (or -M) option.
There's a compatibility hook to keep old names working if only one
aucat server is running.
|
|
|
|
|
|
with almost the same syntax (roughly an extra -M option).
Thru boxes are created with aucat, and corresponding MIDI port
names have the "aucat" prefix instead of "midithru". The old
device name will still work some time for backward compatibility.
ok deraadt
|
|
- sort usage() for midicat
- tweak a bit of unclear wording
ok ratchov
|
|
of code that becomes unused. Few command line arguments changes are
required though:
- stream definitions (-ios) now must follow devices definitions they
are attached to (-fMn)
- the -n option is now a special "loopback" device and is thus used
like -f, eg it must precede streams
- in midicat, midi thru boxes are not created automatically anymore,
the new "-M" option must be used for that
- channel numbers (-Cc options) correspond always to channel numbers
of the hardware.
- the -u option isn't needed anymore
- increase the log verbosity so user errors are logged
without using -d
tested by many, help from jmc
|
|
|
|
stays closed also if -q is used. As we're at it, add -a to midicat so
it behaves like aucat.
|
|
quality to save bandwith when a remote audio device is used.
|
|
No behaviour change.
|
|
adjusted when new streams are connected and disconnected. Disabling
automatic volume adjustment makes sense if all streams are recorded
with properly lowered volumes.
|
|
from peters at schwertfisch.de, thanks!
|
|
work over TCP, for instance, to expose the sound card of one machine
with other machines of the network.
The first client generates a 128-bit random number (aka the
session cookie), saves it in $HOME/.aucat_cookie and sends it to the
server. Successive clients load the cookie from $HOME/.aucat_cookie
and send it to the server but the server accepts only clients whose
cookie matches the session cookie. When all clients are gone, the
session is over, and another cookie could start a new session, and so
on.
TCP is enabled on the server with the new -L option, and on the client
side hostnames are specified with a new optional component in the
device name.
hints from damien, dlg and deraadt, tweaks from jmc
|
|
requested by deraadt
|
|
ok ratchov
|
|
be free()ed, iterate over the file_list, and find the structure
to free. This is safer and simpler. No behaviour change
|
|
macros instead of hardcoded strings. No object change
|
|
|
|
|
|
AMSG_xxx macros, which in turns simplifies the code
|
|
is not a proper error message.
|
|
fix NULL vs 0, etc. No behaviour change.
|
|
used as filename
|
|
|
|
no connections anymore.
|
|
if no files are given on the command line
|
|
|
|
difference between audio files and client connections. Clean up
the way command line options are handled and clarify this in the
manual page: stream parameters (-Ccehjmrtvx) must precede stream
definitions (-ios) and per-device parameters (-abz) and stream
definitions (-ios) must precede device definitions (-f). Since
there's no ``server'' and ``non-server'' modes anymore, make the
-l option just detach the process.
ok and help from jakemsr and jmc
|
|
don't check if the midi control interface is idle
from ratchov
|
|
results in a use after free(). Catched by jakemsr@ with MALLOC_OPTIONS=J
|
|
open the device input-only if -o is used, and output-only if -i is
used).
|