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:23:27 +0300
committerTristan Matthews <tmatth@videolan.org>2014-12-07 19:39:02 +0300
commit29254a62c73903e3b0f1c1c1c4b543b77ff0ad1d (patch)
tree5379723f8b7d8f1289cf26f59150e9a6e40b71bf
parent5ff4a2ce8f2d0a5a1f75b5fe354a6982aec6df72 (diff)
dropped codec-only README.symbian
-rw-r--r--Makefile.am2
-rw-r--r--README.symbian43
2 files changed, 1 insertions, 44 deletions
diff --git a/Makefile.am b/Makefile.am
index 555728e..e08bb48 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,7 +8,7 @@ ACLOCAL_AMFLAGS = -I m4
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = speexdsp.pc
-EXTRA_DIST = SpeexDSP.spec SpeexDSP.spec.in SpeexDSP.kdevelop speexdsp.pc.in README.blackfin README.symbian README.TI-DSP
+EXTRA_DIST = SpeexDSP.spec SpeexDSP.spec.in SpeexDSP.kdevelop speexdsp.pc.in README.blackfin README.TI-DSP
#Fools KDevelop into including all files
SUBDIRS = libspeexdsp include doc win32 symbian ti
diff --git a/README.symbian b/README.symbian
deleted file mode 100644
index a4f8d95..0000000
--- a/README.symbian
+++ /dev/null
@@ -1,43 +0,0 @@
-Using Speex on Symbian OS
-Conrad Parker and Colin Ward, CSIRO Australia, July 2004
-
-
-Introduction
-------------
-
-The symbian/ directory contains the following files for Symbian's abuild tool:
-
- bld.inf Component definition file
- speex.mmp Project specification file
- config.h Configuration options for both emulator and device builds
-
-
-Developing applications for libspeex for Symbian OS
----------------------------------------------------
-
- Any references to the statically defined SpeexMode structures must be
- replaced by a call to a speex_lib_get_mode () for that mode.
-
- * References to the statically defined array speex_mode_list[modeID]
- must be replaced by a call to speex_lib_get_mode (modeID):
-
-- mode = speex_mode_list[modeID];
-+ mode = speex_lib_get_mode (modeID);
-
- * References to the statically defined mode structures must be replaced:
-
- SpeexMode * mode1, * mode2, * mode3;
-
-- mode1 = &speex_nb_mode;
-+ mode1 = speex_lib_get_mode (SPEEX_MODEID_NB);
-
-- mode2 = &speex_wb_mode;
-+ mode2 = speex_lib_get_mode (SPEEX_MODEID_WB);
-
-- mode3 = &speex_uwb_mode;
-+ mode3 = speex_lib_get_mode (SPEEX_MODEID_UWB);
-
- Note that the constants SPEEX_MODEID_NB, SPEEX_MODEID_WB and
- SPEEX_MODEID_UWB were introduced in libspeex 1.1.6, and are
- defined in <speex/speex.h>. speex_lib_get_mode() was introduced
- in libspeex 1.1.7 and is declared in <speex/speex.h>.