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-16 01:33:58 +0300
committerjm <jm@0101bb08-14d6-0310-b084-bc0e0c8e3800>2007-11-16 01:33:58 +0300
commitd0dadd4295a83e553ebf74dfceaa121a3dab8de3 (patch)
treeac7793d57822af5188759fd48bf1c8559cac4d96 /include
parent37c520cdecba69716a96d935eafe2126695a2112 (diff)
Minor Windows fix by Alexander Chemeris
git-svn-id: http://svn.xiph.org/trunk/speex@14156 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'include')
-rw-r--r--include/speex/speex.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/include/speex/speex.h b/include/speex/speex.h
index 5620f03..54349a1 100644
--- a/include/speex/speex.h
+++ b/include/speex/speex.h
@@ -410,19 +410,16 @@ extern const SpeexMode speex_wb_mode;
/** Default "ultra-wideband" mode */
extern const SpeexMode speex_uwb_mode;
-#ifdef EPIC_48K
-/** 4.8 kbps narrowband mode */
-extern const SpeexMode speex_nb_48k_mode;
-#endif
-
/** List of all modes available */
extern const SpeexMode * const speex_mode_list[SPEEX_NB_MODES];
/** Obtain one of the modes available */
const SpeexMode * speex_lib_get_mode (int mode);
-/* We actually override the fucntion in the narrowband case so that we can avoid linking in the wideband stuff */
+#ifndef WIN32
+/* We actually override the function in the narrowband case so that we can avoid linking in the wideband stuff */
#define speex_lib_get_mode(mode) ((mode)==SPEEX_MODEID_NB ? &speex_nb_mode : speex_lib_get_mode (mode))
+#endif
#ifdef __cplusplus
}