Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/speexdsp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Matthews <tmatth@videolan.org>2014-12-07 03:15:40 +0300
committerTristan Matthews <tmatth@videolan.org>2014-12-07 03:15:40 +0300
commitf8f14d098275cf6fb70f9413d4f237708a838878 (patch)
tree5add5189a4961b1577482df7c1aa26eec7648a7a
parentac91846ffae99867bbf076a9e3f0d01276d47646 (diff)
Updated README.blackfin for speexdsp
-rw-r--r--README.blackfin17
1 files changed, 9 insertions, 8 deletions
diff --git a/README.blackfin b/README.blackfin
index 7e8d600..4270d21 100644
--- a/README.blackfin
+++ b/README.blackfin
@@ -1,21 +1,22 @@
-Speex has been ported to the Blackfin DSP, for the STAMP development board.
+SpeexDSP has been ported to the Blackfin DSP, for the STAMP development board.
This port has been tested on the STAMP development board and requires the
toolchain available at http://blackfin.uclinux.org/
-1/ In order to cross-compile for uClinux from the Speex tarball:
+1/ In order to cross-compile for uClinux from the SpeexDSP tarball:
./configure --enable-blackfin-asm --enable-fixed-point --host=bfin-uclinux
- cd libspeex
+ cd libspeexdsp
make
The --enable-blackfin-asm option is not required, but it speeds up Speex by
approximately a factor of two.
-2/ In order to cross-compile for uClinux from the Speex SVN:
+2/ In order to cross-compile for uClinux from the SpeexDSP git:
- svn co http://svn.xiph.org/trunk/speex speex-trunk
- cd speex-trunk
- ./autogen.sh --enable-blackfin-asm --enable-fixed-point --host=bfin-uclinux
- cd libspeex
+ git clone git://git.xiph.org/speexdsp.git
+ cd speexdsp
+ ./autogen.sh
+ ./configure --enable-blackfin-asm --enable-fixed-point --host=bfin-uclinux
+ cd libspeexdsp
make