2
|
1 The source files in this directory are from Appendix A Reference
|
|
2 Implementation of the iLBC Internet Low Bit Rate Codec.
|
|
3 See http://www.ilbcfreeware.org/software.html
|
|
4 and http://www.ietf.org/rfc/rfc3951.txt
|
|
5
|
|
6 Place the awk script (courtesy of Wenju Jiang, Columbia University) and
|
|
7 the IETF rfc3951.txt file in the same directory, and then type
|
|
8 the following command:
|
|
9
|
|
10 awk -f extract-cfile.awk rfc3951.txt
|
|
11
|
|
12 Correct an error in file constants.c:
|
|
13 After line 13 #include "iLBC_define.h"
|
|
14 add the following line:
|
|
15 #include "constants.h"
|
|
16
|
|
17 The end of file syntFilter.c contains after line 68 text that is not
|
|
18 source code.
|
|
19
|
|
20 Source code was formated with indent:
|
|
21 indent -kr -i2 -nlp -ci2 -l72 -lc72 -nut *.c *.h
|
|
22
|