Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

afsetvirtualpcmmapping(3) [centos man page]

AFSETVIRTUALSAMPLEFO(3) 												   AFSETVIRTUALSAMPLEFO(3)

NAME
afSetVirtualByteOrder, afSetVirtualChannels, afSetVirtualPCMMapping, afSetVirtualSampleFormat - set the virtual data format for a track in an audio file SYNOPSIS
#include <audiofile.h> int afSetVirtualByteOrder (AFfilehandle file, int track, int byteOrder); int afSetVirtualChannels (AFfilehandle file, int track, int channels); int afSetVirtualSampleFormat (AFfilehandle file, int track, int sampleFormat, int sampleWidth); int afSetVirtualPCMMapping (AFfilehandle file, int track, double slope, double intercept, double minclip, double maxclip); PARAMETERS
o file is an AFfilehandle which refers to an open audio file and is usually created by afOpenFile. o track is an integer which identifies a particular track in an open audio file. The only valid track is AF_DEFAULT_TRACK for all currently supported file formats. o sampleFormat is an integer which denotes a virtual sample format. Valid values are AF_SAMPFMT_TWOSCOMP, AF_SAMPFMT_UNSIGNED, AF_SAMPFMT_FLOAT, and AF_SAMPFMT_DOUBLE. o sampleWidth is a positive integer which specifies the number of bits in a sample. o channels is a positive integer which specifies the number of interleaved audio channels in the given audio track. o byteOrder is an integer which specifies the virtual byte order of samples in the given audio track. byteOrder can be either AF_BYTEORDER_BIGENDIAN or AF_BYTEORDER_LITTLEENDIAN. o slope and intercept are double-precision floating point values which indicate the audio data sample slope and zero-crossing value, respectively, for the given sample format. o minclip and maxclip are double-precision floating point values which indicates the minimum or maximum sample values to be returned. Any values less than minclip will be set to minclip, and any values greater than maxclip will be set to maxclip. RETURN VALUE
These functions return 0 for success and -1 for failure. AUTHOR
Michael Pruett <michael@68k.org> Audio File Library 0.3.6 03/06/2013 AFSETVIRTUALSAMPLEFO(3)

Check Out this Related Man Page

AFINITSAMPLEFORMAT(3)													     AFINITSAMPLEFORMAT(3)

NAME
afInitSampleFormat, afInitByteOrder, afInitChannels, afInitRate - initialize audio data format for a track in an audio file setup SYNOPSIS
#include <audiofile.h> void afInitSampleFormat(AFfilesetup setup, int track, int sampleFormat, int sampleWidth); void afInitByteOrder(AFfilesetup setup, int track, int byteOrder); void afInitChannels(AFfilesetup setup, int track, int channels); void afInitRate(AFfilesetup setup, int track, double rate); PARAMETERS
setup is a valid file setup returned by afNewFileSetup(3). track specifies a track within the audio file setup. track is always AF_DEFAULT_TRACK for all currently supported file formats. sampleFormat is a symbolic constant specifying the sample format for the audio data in the track. sampleFormat must be one of AF_SAMPFMT_TWOSCOMP, AF_SAMPFMT_UNSIGNED, AF_SAMPFMT_FLOAT, or AF_SAMPFMT_DOUBLE. sampleWidth is a positive integer specifying the number of bits for each sample in the track. byteOrder is a symbolic constant specifying the byte order of the track. byteOrder must be one of AF_BYTEORDER_BIGENDIAN or AF_BYTEORDER_LITTLEENDIAN. channels is a positive integer specifying the number of channels in the track. rate is a positive double-precision floating-point number specifying the sample rate of the track. DESCRIPTION
afInitSampleFormat initializes the track to the specified sample format and sample width. afInitByteOrder initializes the track to the specified byte order. afInitChannels initializes the track to the specified number of channels. afInitRate initializes the track to the specified sample rate. ERRORS
afInitSampleFormat, afInitByteOrder, afInitChannels, and afInitRate can produce the following errors: AF_BAD_FILESETUP setup represents an invalid file setup. AF_BAD_TRACK track represents an invalid track identifier. afInitSampleFormat can also produce the following errors: AF_BAD_SAMPFMT sampleFormat does not represent a valid sample format. AF_BAD_WIDTH sampleWidth is not a valid sample width. afInitByteOrder can also produce the following error: AF_BAD_BYTEORDER byteOrder does not represent a valid byte order. afInitChannels can also produce the following error: AF_BAD_CHANNELS channels specifies an invalid number of channels. afInitRate can also produce the following error: AF_BAD_RATE rate specifies an invalid sample rate. SEE ALSO
afNewFileSetup(3), afInitFileFormat(3), afInitCompression(3), afOpenFile(3) AUTHOR
Michael Pruett <michael@68k.org> Audio File Library 0.3.6 03/06/2013 AFINITSAMPLEFORMAT(3)
Man Page