Mirror of opus
Find a file
2010-11-14 02:24:26 -05:00
celt@1ad93cf485 CELT updated to 0.9.0 (+ PLC fix) 2010-11-08 14:49:12 +08:00
doc base64-encoded source code 2010-11-14 02:24:26 -05:00
silk@446b7f3fff Adding missing SILK files to the build 2010-11-13 00:31:36 -05:00
src Updated to follow changes in SILK API 2010-11-12 06:47:46 +08:00
.gitmodules Added SILK submodule 2010-06-29 23:40:56 -04:00
AUTHORS Toplevel Makefile, some project info 2010-07-05 14:55:02 -04:00
autogen.sh Build update 2010-07-08 11:52:49 -04:00
ChangeLog Build update 2010-07-08 11:52:49 -04:00
configure.ac Adding missing SILK files to the build 2010-11-13 00:31:36 -05:00
COPYING Licensing stuff 2010-07-06 20:51:46 -04:00
INSTALL draft update, instructions 2010-07-08 13:40:07 -04:00
LICENSE_PLEASE_READ.txt Licensing stuff 2010-07-06 20:51:46 -04:00
Makefile.am autotools-based build system 2010-07-08 11:27:20 -04:00
NEWS Build update 2010-07-08 11:52:49 -04:00
README API renamed to Opus 2010-10-18 12:50:49 -04:00

This is a prototype codec and for now it has limited functionality. 

To build from a distribution tarball, you only need to do the following:

% ./configure --disable-shared
% make

To build from the git repository, the following steps are necessary

0) Clone the repository:

% git clone git://git.xiph.org/users/jm/ietfcodec.git
% cd ietfcodec

1) Get the celt and silk submodules:

% git submodule update --init

2) Compiling

% ./autogen.sh
% ./configure --disable-shared
% make


Once you have compiled the codec, there will be a test_opus executable in
the src/ directory. This can be in the following way:

% ./test_opus 48000 1 960 80 input.sw output.sw

The arguments are:
1) The sampling rate (only 48000 supported for now)
2) The number of channels (only mono supported for now)
3) The frame size in samples (480 and 960 supported)
4) Number of compressed bytes per frame (80 here means 32 kb/s)
5) Input PCM file (16-bit, machine endian)
6) Output PCM file after encoding and decoding (16-bit machine endian)