[Contents] [Index] [Help] [Retrace] [Browse <] [Browse >]

Commands for audio use can be divided into two categories:
allocation/arbitration commands and hardware control commands.

There are four allocation/arbitration commands.  These do not actually
produce any sound.  Instead they manage and arbitrate the audio resources
for the many tasks that may be using audio in the Amiga's multitasking
environment.

    ADCMD_ALLOCATE   - Reserves an audio channel for your program to use.
    ADCMD_FREE       - Frees an audio channel.
    ADCMD_SETPREC    - Changes the precedence of a sound in progress.
    ADCMD_LOCK       - Tells if a channel has been stolen from you.

The hardware control commands are used to set up, start, and stop sounds
on the audio device:

    CMD_WRITE        - The main command.  Starts a sound playing.
    ADCMD_FINISH     - Aborts a sound in progress.
    ADCMD_PERVOL     - Changes the period (speed) and volume of a sound
                        in progress.
    CMD_FLUSH        - Clears the audio channels.
    CMD_RESET        - Resets and initializes the audio device.
    ADCMD_WAITCYCLE  - Signals you when a cycle finishes.
    CMD_STOP         - Temporarily stops a channel from playing.
    CMD_START        - Restarts an audio channel that was stopped.
    CMD_READ         - Returns a pointer to the current IOAudio request.


[Back to Amiga Developer Docs]