summaryrefslogtreecommitdiff
path: root/pjlib
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-08-06 18:23:56 +0000
committerBenny Prijono <bennylp@teluu.com>2006-08-06 18:23:56 +0000
commit6dd0c041b65a7c102aad3aee3c35264e3bf1186f (patch)
treed2728f06ddee6d0d2f6ac3e412185dfa6bab5236 /pjlib
parent5f8a7295e220373097ab73658d853dda2643b84e (diff)
Echo suppressor tuning and testing on WincE, and also added config_site_sample.h
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@656 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib')
-rw-r--r--pjlib/build/pjlib.dsp4
-rw-r--r--pjlib/include/pj/config_site_sample.h30
2 files changed, 34 insertions, 0 deletions
diff --git a/pjlib/build/pjlib.dsp b/pjlib/build/pjlib.dsp
index 0ee608ad..7440510f 100644
--- a/pjlib/build/pjlib.dsp
+++ b/pjlib/build/pjlib.dsp
@@ -466,6 +466,10 @@ SOURCE=..\include\pj\config_site.h
# End Source File
# Begin Source File
+SOURCE=..\include\pj\config_site_sample.h
+# End Source File
+# Begin Source File
+
SOURCE=..\include\pj\ctype.h
# End Source File
# Begin Source File
diff --git a/pjlib/include/pj/config_site_sample.h b/pjlib/include/pj/config_site_sample.h
new file mode 100644
index 00000000..fe267c93
--- /dev/null
+++ b/pjlib/include/pj/config_site_sample.h
@@ -0,0 +1,30 @@
+
+
+
+/*
+ * This file (config_site_sample.h) contains various configuration
+ * settings that I use for certain settings.
+ */
+
+
+/*
+ * Typical configuration for WinCE target.
+ */
+#if defined(PJ_WIN32_WINCE) && PJ_WIN32_WINCE!=0
+# if !defined(PJ_DEBUG) || PJ_DEBUG==0
+# define PJ_LOG_MAX_LEVEL 0
+# define PJ_ENABLE_EXTRA_CHECK 0
+# endif
+
+# define PJ_HAS_FLOATING_POINT 0
+
+# define PJMEDIA_HAS_G711_PLC 0
+# define PJMEDIA_HAS_SMALL_FILTER 0
+# define PJMEDIA_HAS_LARGE_FILTER 0
+# define PJMEDIA_HAS_L16_CODEC 0
+/*# define PJMEDIA_HAS_GSM_CODEC 0*/
+# define PJMEDIA_HAS_ILBC_CODEC 0
+/*# define PJMEDIA_HAS_SPEEX_CODEC 0*/
+# define PJMEDIA_HAS_SPEEX_AEC 0
+#endif
+