summaryrefslogtreecommitdiff
path: root/pjmedia/src/pjmedia-codec/speex/config.h
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2007-04-06 20:21:28 +0000
committerBenny Prijono <bennylp@teluu.com>2007-04-06 20:21:28 +0000
commitbfd3f58f5b715238fe618d053ddf908a34f1e56c (patch)
tree914793adb7ee034bb6102981d4753d2a5ff2b60d /pjmedia/src/pjmedia-codec/speex/config.h
parent5b2f221e312217144baa97bc19b143601bdb2bfb (diff)
Deleting own copy of of speex and portaudio
git-svn-id: http://svn.pjsip.org/repos/pjproject/branches/split-3rd-party@1166 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia/src/pjmedia-codec/speex/config.h')
-rw-r--r--pjmedia/src/pjmedia-codec/speex/config.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/pjmedia/src/pjmedia-codec/speex/config.h b/pjmedia/src/pjmedia-codec/speex/config.h
deleted file mode 100644
index 31e03376..00000000
--- a/pjmedia/src/pjmedia-codec/speex/config.h
+++ /dev/null
@@ -1,34 +0,0 @@
-
-#include <pj/log.h>
-
-/* Check if we need to use the fixed point version */
-#if !defined(PJ_HAS_FLOATING_POINT) || PJ_HAS_FLOATING_POINT==0
-# define FIXED_POINT
-#endif
-
-
-#define inline __inline
-#define restrict
-
-#include "misc.h"
-
-#ifdef _MSC_VER
-# pragma warning(disable: 4100) // unreferenced formal parameter
-# pragma warning(disable: 4101) // unreferenced local variable
-# pragma warning(disable: 4244) // conversion from 'double ' to 'float '
-# pragma warning(disable: 4305) // truncation from 'const double ' to 'float '
-# pragma warning(disable: 4701) // local variable used without initialized
-#endif
-
-/*
- * Override miscellaneous Speex functions.
- */
-#define OVERRIDE_SPEEX_ERROR
-#define speex_error(str) PJ_LOG(4,("speex", "error: %s", str))
-
-#define OVERRIDE_SPEEX_WARNING
-#define speex_warning(str) PJ_LOG(5,("speex", "warning: %s", str))
-
-#define OVERRIDE_SPEEX_WARNING_INT
-#define speex_warning_int(str,val) PJ_LOG(5,("speex", "warning: %s: %d", str, val))
-