OLD | NEW |
1 To build this source code, simply type: | 1 To build this source code, simply type: |
2 | 2 |
3 % make | 3 % make |
4 | 4 |
5 If this does not work, or if you want to change the default configuration | 5 If this does not work, or if you want to change the default configuration |
6 (e.g., to compile for a fixed-point architecture), simply edit the options | 6 (e.g., to compile for a fixed-point architecture), simply edit the options |
7 in the Makefile. | 7 in the Makefile. |
8 | 8 |
9 An up-to-date implementation conforming to this standard is available in a | 9 An up-to-date implementation conforming to this standard is available in a |
10 Git repository at git://git.xiph.org/opus.git or on a website at: | 10 Git repository at git://git.xiph.org/opus.git or on a website at: |
11 http://opus-codec.org/ | 11 http://opus-codec.org/ |
12 However, although that implementation is expected to remain conformant | 12 However, although that implementation is expected to remain conformant |
13 with the standard, it is the code in this RFC that shall remain normative. | 13 with the standard, it is the code in this RFC that shall remain normative. |
14 To build from the git repository instead of using this RFC, follow these | 14 To build from the git repository instead of using this RFC, follow these |
15 steps: | 15 steps: |
16 | 16 |
17 1) Clone the repository (latest implementation of this standard at the time | 17 1) Clone the repository (latest implementation of this standard at the time |
18 of publication) | 18 of publication) |
19 | 19 |
20 % git clone git://git.opus-codec.org/opus.git | 20 % git clone git://git.opus-codec.org/opus.git |
21 % cd opus | 21 % cd opus |
22 | 22 |
23 2) Compile | 23 2) Compile |
24 | 24 |
25 % ./autogen.sh | 25 % ./autogen.sh |
26 % ./configure | 26 % ./configure |
27 % make | 27 % make |
(...skipping 17 matching lines...) Expand all Loading... |
45 -framesize <2.5|5|10|20|40|60> : frame size in ms; default: 20 | 45 -framesize <2.5|5|10|20|40|60> : frame size in ms; default: 20 |
46 -max_payload <bytes> : maximum payload size in bytes, default: 1024 | 46 -max_payload <bytes> : maximum payload size in bytes, default: 1024 |
47 -complexity <comp> : complexity, 0 (lowest) ... 10 (highest); default: 10 | 47 -complexity <comp> : complexity, 0 (lowest) ... 10 (highest); default: 10 |
48 -inbandfec : enable SILK inband FEC | 48 -inbandfec : enable SILK inband FEC |
49 -forcemono : force mono encoding, even for stereo input | 49 -forcemono : force mono encoding, even for stereo input |
50 -dtx : enable SILK DTX | 50 -dtx : enable SILK DTX |
51 -loss <perc> : simulate packet loss, in percent (0-100); default: 0 | 51 -loss <perc> : simulate packet loss, in percent (0-100); default: 0 |
52 | 52 |
53 input and output are little endian signed 16-bit PCM files or opus bitstreams | 53 input and output are little endian signed 16-bit PCM files or opus bitstreams |
54 with simple opus_demo proprietary framing. | 54 with simple opus_demo proprietary framing. |
OLD | NEW |