By default, information consisting of the date, the user and the program creating the file is written to the audio file header or trailer. The routine AFsetHInfo can be called before calling this routine to specify additional information to be written to the file.
This routine can write AU audio files, AIFF-C files, WAVE files, and headerless audio files.
For the fixed point file data representations, input values in the following ranges will be converted without clipping.
data format allowed values 8-bit mu-law - [ -32636, +32636 ] 8-bit A-law - [ -32768, +32768 ] 8-bit integer - [ -16384, -16383 ] 16-bit integer - [ -32768, +32767 ] 24-bit integer - [ -32768, +32768 ) 32-bit integer - [ -32768, +32768 )For AU and WAVE files containing floating-point data, values are scaled by 1/32768 before being written to the file. For data values between [-32768, +32768], the file data will lie in the range [-1, +1]. For headerless files with any data format, the values are scaled by unity.
Fformat = Dformat + 256 * FtypeDformat: data format
FD_MULAW8 = 1, mu-law 8-bit data FD_ALAW8 = 2, A-law 8-bit data FD_UINT8 = 3, offset-binary 8-bit integer data FD_INT8 = 4, two's-complement 8-bit integer data FD_INT16 = 5, two's-complement 16-bit integer data FD_INT24 = 6, two's-complement 24-bit integer data FD_INT32 = 7, two's-complement 32-bit integer data FD_FLOAT32 = 8, 32-bit floating-point data FD_FLOAT64 = 9, 64-bit floating-point data FD_TEXT = 10, text dataFtype: output file type
FTW_AU = 1, AU audio file FTW_WAVE = 2, WAVE file (auto extensible format) FTW_WAVE_NOEX = 2 + 16, WAVE file (no extensible format) FTW_AIFF_C = 3, AIFF-C sound file FTW_NH_EB = 4 + 0, Headerless file (big-endian byte order) FTW_NH_EL = 4 + 16, Headerless file (little-endian byte order) FTW_NH_NATIVE = 4 + 32, Headerless file (native byte order) FTW_NH_SWAP = 4 + 48, Headerless file (byte-swapped byte order) FTW_AIFF = 5, AIFF sound file