summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-08-14 14:47:07 +0000
committerBenny Prijono <bennylp@teluu.com>2008-08-14 14:47:07 +0000
commit32d54afe5add6835544e53114364366f4022cede (patch)
tree12c5b340f97be1877f222f27dad8f25d8cb6f7ed
parentaf456c288e8d4d581aedb71c72fd1619470c2a9e (diff)
Increase codec's maximum silence duration (PJMEDIA_CODEC_MAX_SILENCE_PERIOD) from 500ms to 5 seconds since it may produce ticks noise which can be quite annoying
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2213 74dad513-b988-da41-8d7b-12977e46ad98
-rw-r--r--pjmedia/include/pjmedia/config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pjmedia/include/pjmedia/config.h b/pjmedia/include/pjmedia/config.h
index 8855edd9..993ee21b 100644
--- a/pjmedia/include/pjmedia/config.h
+++ b/pjmedia/include/pjmedia/config.h
@@ -410,11 +410,11 @@
*
* Use (-1) to disable this feature.
*
- * Default: 500 ms
+ * Default: 5000 ms
*
*/
#ifndef PJMEDIA_CODEC_MAX_SILENCE_PERIOD
-# define PJMEDIA_CODEC_MAX_SILENCE_PERIOD 500
+# define PJMEDIA_CODEC_MAX_SILENCE_PERIOD 5000
#endif