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

github.com/xiph/speex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2007-11-10 00:13:52 +0300
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2007-11-10 00:13:52 +0300
commitd4e66faf61b2258ffaa7b3d2d2a39a8c86303163 (patch)
treee48292ac7bb25b075698a49c82777b8547e28ee8 /libspeex/modes_wb.c
parentc5258ab5de35699de8556fe96fadf835d165c2dc (diff)
Removed the custom (non-standard) 4.8 kbps mode because it has been broken
for a while. Recent improvements in the other modes (4 and 6 kbps) made it no longer useful anyway. git-svn-id: http://svn.xiph.org/trunk/speex@14117 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'libspeex/modes_wb.c')
-rw-r--r--libspeex/modes_wb.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libspeex/modes_wb.c b/libspeex/modes_wb.c
index 2f71f08..52631a5 100644
--- a/libspeex/modes_wb.c
+++ b/libspeex/modes_wb.c
@@ -291,10 +291,6 @@ const SpeexMode speex_uwb_mode = {
const SpeexMode * speex_lib_get_mode (int mode)
{
-#ifdef EPIC_48K
- if (mode == SPEEX_MODEID_NB_48K) return &speex_nb_48k_mode;
-#endif
-
if (mode < 0 || mode >= SPEEX_NB_MODES) return NULL;
return speex_mode_list[mode];