annotate src/opus-1.3/README @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 4664ac0c1032
children
rev   line source
cannam@154 1 == Opus audio codec ==
cannam@154 2
cannam@154 3 Opus is a codec for interactive speech and audio transmission over the Internet.
cannam@154 4
cannam@154 5 Opus can handle a wide range of interactive audio applications, including
cannam@154 6 Voice over IP, videoconferencing, in-game chat, and even remote live music
cannam@154 7 performances. It can scale from low bit-rate narrowband speech to very high
cannam@154 8 quality stereo music.
cannam@154 9
cannam@154 10 Opus, when coupled with an appropriate container format, is also suitable
cannam@154 11 for non-realtime stored-file applications such as music distribution, game
cannam@154 12 soundtracks, portable music players, jukeboxes, and other applications that
cannam@154 13 have historically used high latency formats such as MP3, AAC, or Vorbis.
cannam@154 14
cannam@154 15 Opus is specified by IETF RFC 6716:
cannam@154 16 https://tools.ietf.org/html/rfc6716
cannam@154 17
cannam@154 18 The Opus format and this implementation of it are subject to the royalty-
cannam@154 19 free patent and copyright licenses specified in the file COPYING.
cannam@154 20
cannam@154 21 This package implements a shared library for encoding and decoding raw Opus
cannam@154 22 bitstreams. Raw Opus bitstreams should be used over RTP according to
cannam@154 23 https://tools.ietf.org/html/rfc7587
cannam@154 24
cannam@154 25 The package also includes a number of test tools used for testing the
cannam@154 26 correct operation of the library. The bitstreams read/written by these
cannam@154 27 tools should not be used for Opus file distribution: They include
cannam@154 28 additional debugging data and cannot support seeking.
cannam@154 29
cannam@154 30 Opus stored in files should use the Ogg encapsulation for Opus which is
cannam@154 31 described at:
cannam@154 32 https://tools.ietf.org/html/rfc7845
cannam@154 33
cannam@154 34 An opus-tools package is available which provides encoding and decoding of
cannam@154 35 Ogg encapsulated Opus files and includes a number of useful features.
cannam@154 36
cannam@154 37 Opus-tools can be found at:
cannam@154 38 https://git.xiph.org/?p=opus-tools.git
cannam@154 39 or on the main Opus website:
cannam@154 40 https://opus-codec.org/
cannam@154 41
cannam@154 42 == Compiling libopus ==
cannam@154 43
cannam@154 44 To build from a distribution tarball, you only need to do the following:
cannam@154 45
cannam@154 46 % ./configure
cannam@154 47 % make
cannam@154 48
cannam@154 49 To build from the git repository, the following steps are necessary:
cannam@154 50
cannam@154 51 0) Set up a development environment:
cannam@154 52
cannam@154 53 On an Ubuntu or Debian family Linux distribution:
cannam@154 54
cannam@154 55 % sudo apt-get install git autoconf automake libtool gcc make
cannam@154 56
cannam@154 57 On a Fedora/Redhat based Linux:
cannam@154 58
cannam@154 59 % sudo dnf install git autoconf automake libtool gcc make
cannam@154 60
cannam@154 61 Or for older Redhat/Centos Linux releases:
cannam@154 62
cannam@154 63 % sudo yum install git autoconf automake libtool gcc make
cannam@154 64
cannam@154 65 On Apple macOS, install Xcode and brew.sh, then in the Terminal enter:
cannam@154 66
cannam@154 67 % brew install autoconf automake libtool
cannam@154 68
cannam@154 69 1) Clone the repository:
cannam@154 70
cannam@154 71 % git clone https://git.xiph.org/opus.git
cannam@154 72 % cd opus
cannam@154 73
cannam@154 74 2) Compiling the source
cannam@154 75
cannam@154 76 % ./autogen.sh
cannam@154 77 % ./configure
cannam@154 78 % make
cannam@154 79
cannam@154 80 3) Install the codec libraries (optional)
cannam@154 81
cannam@154 82 % sudo make install
cannam@154 83
cannam@154 84 Once you have compiled the codec, there will be a opus_demo executable
cannam@154 85 in the top directory.
cannam@154 86
cannam@154 87 Usage: opus_demo [-e] <application> <sampling rate (Hz)> <channels (1/2)>
cannam@154 88 <bits per second> [options] <input> <output>
cannam@154 89 opus_demo -d <sampling rate (Hz)> <channels (1/2)> [options]
cannam@154 90 <input> <output>
cannam@154 91
cannam@154 92 mode: voip | audio | restricted-lowdelay
cannam@154 93 options:
cannam@154 94 -e : only runs the encoder (output the bit-stream)
cannam@154 95 -d : only runs the decoder (reads the bit-stream as input)
cannam@154 96 -cbr : enable constant bitrate; default: variable bitrate
cannam@154 97 -cvbr : enable constrained variable bitrate; default:
cannam@154 98 unconstrained
cannam@154 99 -bandwidth <NB|MB|WB|SWB|FB>
cannam@154 100 : audio bandwidth (from narrowband to fullband);
cannam@154 101 default: sampling rate
cannam@154 102 -framesize <2.5|5|10|20|40|60>
cannam@154 103 : frame size in ms; default: 20
cannam@154 104 -max_payload <bytes>
cannam@154 105 : maximum payload size in bytes, default: 1024
cannam@154 106 -complexity <comp>
cannam@154 107 : complexity, 0 (lowest) ... 10 (highest); default: 10
cannam@154 108 -inbandfec : enable SILK inband FEC
cannam@154 109 -forcemono : force mono encoding, even for stereo input
cannam@154 110 -dtx : enable SILK DTX
cannam@154 111 -loss <perc> : simulate packet loss, in percent (0-100); default: 0
cannam@154 112
cannam@154 113 input and output are little-endian signed 16-bit PCM files or opus
cannam@154 114 bitstreams with simple opus_demo proprietary framing.
cannam@154 115
cannam@154 116 == Testing ==
cannam@154 117
cannam@154 118 This package includes a collection of automated unit and system tests
cannam@154 119 which SHOULD be run after compiling the package especially the first
cannam@154 120 time it is run on a new platform.
cannam@154 121
cannam@154 122 To run the integrated tests:
cannam@154 123
cannam@154 124 % make check
cannam@154 125
cannam@154 126 There is also collection of standard test vectors which are not
cannam@154 127 included in this package for size reasons but can be obtained from:
cannam@154 128 https://opus-codec.org/docs/opus_testvectors-rfc8251.tar.gz
cannam@154 129
cannam@154 130 To run compare the code to these test vectors:
cannam@154 131
cannam@154 132 % curl -OL https://opus-codec.org/docs/opus_testvectors-rfc8251.tar.gz
cannam@154 133 % tar -zxf opus_testvectors-rfc8251.tar.gz
cannam@154 134 % ./tests/run_vectors.sh ./ opus_newvectors 48000
cannam@154 135
cannam@154 136 == Portability notes ==
cannam@154 137
cannam@154 138 This implementation uses floating-point by default but can be compiled to
cannam@154 139 use only fixed-point arithmetic by setting --enable-fixed-point (if using
cannam@154 140 autoconf) or by defining the FIXED_POINT macro (if building manually).
cannam@154 141 The fixed point implementation has somewhat lower audio quality and is
cannam@154 142 slower on platforms with fast FPUs, it is normally only used in embedded
cannam@154 143 environments.
cannam@154 144
cannam@154 145 The implementation can be compiled with either a C89 or a C99 compiler.
cannam@154 146 While it does not rely on any _undefined behavior_ as defined by C89 or
cannam@154 147 C99, it relies on common _implementation-defined behavior_ for two's
cannam@154 148 complement architectures:
cannam@154 149
cannam@154 150 o Right shifts of negative values are consistent with two's
cannam@154 151 complement arithmetic, so that a>>b is equivalent to
cannam@154 152 floor(a/(2^b)),
cannam@154 153
cannam@154 154 o For conversion to a signed integer of N bits, the value is reduced
cannam@154 155 modulo 2^N to be within range of the type,
cannam@154 156
cannam@154 157 o The result of integer division of a negative value is truncated
cannam@154 158 towards zero, and
cannam@154 159
cannam@154 160 o The compiler provides a 64-bit integer type (a C99 requirement
cannam@154 161 which is supported by most C89 compilers).