/usr/share/doc/libaudiofile-dev/afInitFileFormat.3.txt is in libaudiofile-dev 0.3.6-2ubuntu0.15.10.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | afInitFileFormat(3)
===================
NAME
----
afInitFileFormat - initialize file format of an audio file setup
SYNOPSIS
--------
#include <audiofile.h>
void afInitFileFormat(AFfilesetup setup, int fileFormat);
PARAMETERS
----------
`setup` is a valid file setup created by linkaf:afNewFileSetup[3].
`fileFormat` is an integer constant specifying a file format.
DESCRIPTION
-----------
Given an `AFfilesetup` structure created with linkaf:afNewFileSetup[3],
`afInitFileFormat` initializes the file format to that specified by
`fileFormat`.
The following file formats are currently supported:
`AF_FILE_RAWDATA`:: raw audio data
`AF_FILE_AIFF`:: Audio Interchange File Format
`AF_FILE_AIFFC`:: Audio Interchange File Format AIFF-C
`AF_FILE_NEXTSND`:: NeXT .snd/Sun .au
`AF_FILE_WAVE`:: Microsoft RIFF WAVE
`AF_FILE_BICSF`:: Berkeley/IRCAM/CARL Sound File
`AF_FILE_AVR`:: Audio Visual Research
`AF_FILE_IFF_8SVX`:: Amiga IFF/8SVX
`AF_FILE_SAMPLEVISION`:: Sample Vision
`AF_FILE_VOC`:: Creative Voice File
`AF_FILE_NIST_SPHERE`:: NIST SPHERE
`AF_FILE_CAF`:: Core Audio Format
ERRORS
------
`afInitFileFormat` can produce the following errors:
`AF_BAD_FILESETUP`:: `setup` represents an invalid file setup.
`AF_BAD_FILEFMT`:: `fileFormat` represents an unknown file format.
`AF_BAD_NOT_IMPLEMENTED`:: `fileFormat` represents a file format which
is not currently implemented.
SEE ALSO
--------
linkaf:afNewFileSetup[3]
AUTHOR
------
Michael Pruett <michael@68k.org>
|