Edited wiki page Building_Source_v2_0 through web user interface.

This commit is contained in:
bossiel 2013-05-07 05:14:30 +00:00
parent c6ea8f7fab
commit 4dc5fa3eed
1 changed files with 10 additions and 1 deletions

View File

@ -9,7 +9,7 @@ This section explains how to build the project using *CentOS 64* but could be ea
==Preparing the system==
{{{
sudo yum update
sudo yum install make libtool autoconf subversion git wget cvs libogg-devel gcc gcc-c++
sudo yum install make libtool autoconf subversion git wget libogg-devel gcc gcc-c++
}}}
The first step is to checkout Doubango 2.0 source code:
@ -79,6 +79,15 @@ make -j6 V=1 -r libyuv BUILDTYPE=Release
#mkdir /usr/local/include/libyuv && cp -r include/* /usr/local/include/libyuv
}}}
===Building libopus===
*libopus* is optional but highly recommended as its an MTI codec for WebRTC. Adds support for [http://www.opus-codec.org/ Opus audio codec].
{{{
wget http://downloads.xiph.org/releases/opus/opus-1.0.2.tar.gz
tar -xvzf opus-1.0.2.tar.gz
cd opus-1.0.2
./configure --with-pic --enable-float-approx && make && make install
}}}
===Building opencore-amr===
*opencore-amr* is optional. Adds support for *AMR* audio codec.
{{{