summaryrefslogtreecommitdiff
path: root/pjmedia/src/pjmedia-codec/speex/config.h
diff options
context:
space:
mode:
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))
-