1 | Audio File Library Development Notes |
---|
2 | Thursday, 25 October 2001 |
---|
3 | Michael Pruett <mpruett@sgi.com> |
---|
4 | |
---|
5 | ---- |
---|
6 | |
---|
7 | The Audio File Library supports CCITT G.711 mu-law and A-law |
---|
8 | compression. Many compressed data formats are not supported. This is |
---|
9 | currently the most important issue to address. |
---|
10 | |
---|
11 | Error handling is at the present quite robust, but more work can always |
---|
12 | be done in this area. |
---|
13 | |
---|
14 | SGI's Audio File Library on IRIX implements the following formats which |
---|
15 | this version of the library does not: |
---|
16 | |
---|
17 | MPEG1 audio bitstream |
---|
18 | Sound Designer II |
---|
19 | Audio Visual Research |
---|
20 | Amiga IFF/8SVX |
---|
21 | SampleVision |
---|
22 | VOC |
---|
23 | SoundFont2 |
---|
24 | |
---|
25 | I plan to implement some of these as time permits. Sound Designer |
---|
26 | II is out of the question because of its dependency upon Macintosh |
---|
27 | resource forks. Handling these files on Unix systems is simply not |
---|
28 | worth the effort. |
---|
29 | |
---|
30 | ---- |
---|
31 | |
---|
32 | This version of the Audio File Library has been tested under the |
---|
33 | following operating environments: |
---|
34 | |
---|
35 | mips-sgi-irix6.5 / IRIX 6.5 (MIPSpro cc 7.3.1.2m) |
---|
36 | mips-sgi-irix6.5 / IRIX 6.5 (MIPSpro cc 7.2.1.3m) |
---|
37 | mips-sgi-irix6.5 / IRIX 6.5 (gcc 2.8.1) |
---|
38 | i686-pc-linux-gnu / Debian GNU/Linux 2.2 (gcc 2.95.2) |
---|
39 | i686-pc-linux-gnu / Red Hat Linux 7.1 (gcc 2.96) |
---|
40 | i686-pc-linux-gnu / Red Hat Linux 6.1 (egcs 1.1.2) |
---|
41 | powerpc-apple-linux-gnu / Debian GNU/Linux (gcc 2.95.4) |
---|
42 | |
---|
43 | The version of GNU cc shipped with some versions of Red Hat 7.0 [1] is |
---|
44 | known to fail on an internal compiler error while compiling some of the |
---|
45 | test programs: |
---|
46 | |
---|
47 | gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../libaudiofile -g -O2 -c twentyfour.c |
---|
48 | twentyfour.c: In function `main': |
---|
49 | twentyfour.c:231: Internal error: Floating point exception. |
---|
50 | |
---|
51 | Updated versions of GNU cc available from Red Hat fix this problem. |
---|
52 | This problem is not present in Red Hat 7.1 [2]. |
---|
53 | |
---|
54 | [1] On a Red Hat 7.0 system, gcc has the following version information: |
---|
55 | % gcc -v |
---|
56 | Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs |
---|
57 | gcc version 2.96 20000731 (Red Hat Linux 7.0) |
---|
58 | |
---|
59 | [2] On a Red Hat 7.1 system, gcc has the following version information: |
---|
60 | % gcc -v |
---|
61 | Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs |
---|
62 | gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-81) |
---|