CVSROOT:        /cvs
Module name:    src
Changes by:     ratc...@cvs.openbsd.org 2019/07/12 00:30:55

Modified files:
        lib/libsndio   : amsg.h aucat.c 
        usr.bin/sndiod : dev.c dev.h sock.c 

Log message:
Add affinity between the program and its mixer control.

Currently, if there are two instances of the same program, sndiod will
allocate one volume control to each. If both programs disconnect and
reconnect, the information of which control is assigned to which
program is lost. This makes difficult to run two instances of a player
and crossfade between each other with a MIDI controller.

To address this, the program chooses a 32-bit "id" (for now the
process pid) and sends it to the server. The server records the id in
the client's slot structure.  When the server accepts a new
connection, it uses the id to identify the slot the client used during
the previous connection; if it was not recycled yet, it's assigned to
the program.

Reply via email to