[xiph-commits] r14156 - trunk/speex/include/speex
jm at svn.xiph.org
jm at svn.xiph.org
Thu Nov 15 14:33:59 PST 2007
Author: jm
Date: 2007-11-15 14:33:58 -0800 (Thu, 15 Nov 2007)
New Revision: 14156
Modified:
trunk/speex/include/speex/speex.h
Log:
Minor Windows fix by Alexander Chemeris
Modified: trunk/speex/include/speex/speex.h
===================================================================
--- trunk/speex/include/speex/speex.h 2007-11-15 15:12:21 UTC (rev 14155)
+++ trunk/speex/include/speex/speex.h 2007-11-15 22:33:58 UTC (rev 14156)
@@ -410,19 +410,16 @@
/** 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
}
More information about the commits
mailing list