Version3.06.06

ASX is an audio API designed to work on both Windows and Linux operating systems. It is "high level", in that unlike say the Windows WAVE or Direct Sound APIs, which are "buffer based", it deals with audio files.
At a lower level, ASX supports the AudioScience HPI API (Windows and Linux) as well as WAVE and DirectSound (Windows) and ALSA (Linux).
The API is a C function library. This means it can be used from many languages including C, C++, Visual Basic and Delphi.

- Make sure you have an AudioScience WAVE or WDM driver installed and working with at least one audio adapter.
- Obtain the ASX SDK executable file from the applications section of the AudioScience web site (<http://www.audioscience.com/>). The file is named ASX_SDK_WIN_XXX.EXE, where XXX is the version number.
- Run the ASX_SDK_WIN_XXX.EXE application to install both the ASX32.DLL which implements the ASX interface documented here and ASICTRL.EXE which is a Win32 application that uses the ASX interface to control ASI adapters.
ToDo
The various interface files required to interface with asx32.dll are typically installed in c:\Program Files\AudioScience\ASX\lib directory.
Applications can make use of asx.h and asxstring.h header files and should link against asx.lib.
In ASX, the underlying audio hardware is grouped into "adapters". An adapter is typically a soundcard (i.e. AudioScience ASI6114).
Each adapter has a "mixer". The mixer contains source and destination "nodes". A node represents a point at which audio comes in (source) or leaves (destination) the mixer.
Source nodes include:
- playback streams from the computer (usually from a file).
- physical audio inputs like an analog line input or AES/EBU input.
Destination nodes include:
- record streams to the computer (usually to a file).
- physical audio outputs like an analog line output or AES/EBU output.
Nodes are attached to "controls" which contain functionality to process the audio streams passing through them. Examples of controls include:
- Player control to play audio from a file on the computer.
- Recorder control to record audio to a file on the computer.
- Meter control to observe the audio signal's peak and RMS values.
- Volume control to alter the audio level.
- Channel Mode control to swap left and right channels on a stream.
- Level control to set the physical input and output levels on an analog node.
- AES/EBU control, which allows access to the channel status and user data.
The following diagram shows how ASX models a simple sound card:

Method names
Variable names use Hungarian notation, i.e.
- int - prefix with "n", i.e int nIndex
- long - prefix with "l", i.e long lIndex
- unsigned long - prefix with "dw", i.e unsigned long dwSampleRate;
- float - prefix with "f", i.e float fNumber;
- pointer - prefix with "p", i.e int* pnIndex
- reference - prefix with "r", i.e int& rnIndex
- string (char array) - prefix with "sz", i.e char szString[40];
- global var - prefix with "g", i.e int gnIndex
- static var - prefix with "s", i.e int snIndex
- member var - prefix with "m", i.e int mnIndex
- enum - prefix with "asx", then all capitals with "_" separators, i.e. asxERROR_INDEX_OUT_OF_RANGE
Return conventions All functions return ASX_ERROR which equals 0 on success and non-zero on error.
Generated on Wed Oct 3 15:04:44 2007 for ASX by
1.3.9.1