1 /* libSoX SGI/Amiga AIFF format.
2  * Copyright 1991-2007 Guido van Rossum And Sundry Contributors
3  *
4  * This source code is freely redistributable and may be used for
5  * any purpose.  This copyright notice must be maintained.
6  * Guido van Rossum And Sundry Contributors are not responsible for
7  * the consequences of using this software.
8  *
9  * Used by SGI on 4D/35 and Indigo.
10  * This is a subformat of the EA-IFF-85 format.
11  * This is related to the IFF format used by the Amiga.
12  * But, apparently, not the same.
13  * Also AIFF-C format output that is defined in DAVIC 1.4 Part 9 Annex B
14  * (usable for japanese-data-broadcasting, specified by ARIB STD-B24.)
15  */
16 
17 int lsx_aiffstartread(sox_format_t * ft);
18 int lsx_aiffstopread(sox_format_t * ft);
19 int lsx_aiffstartwrite(sox_format_t * ft);
20 int lsx_aiffstopwrite(sox_format_t * ft);
21 int lsx_aifcstartwrite(sox_format_t * ft);
22 int lsx_aifcstopwrite(sox_format_t * ft);
23