summaryrefslogtreecommitdiff
path: root/pjmedia/include
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-06-14 16:52:04 +0000
committerBenny Prijono <bennylp@teluu.com>2008-06-14 16:52:04 +0000
commite90196a46553e346d1dafeab1b1239b6f40ccd70 (patch)
tree3b33c83286b54c44aa759f3829229987bf464c77 /pjmedia/include
parent5a7fe8a7f6e92869075baea0384059cc46816cde (diff)
Implement ticket #546 and revisit ticket #439:
- ticket #546 implements RTCP SDES and CNAME - re-enable periodic RTP TX which was disabled by #439 - fixed bug in RTCP TX interval - changed PJMEDIA_CODEC_MAX_SILENCE_PERIOD value from ts to msec git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2020 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia/include')
-rw-r--r--pjmedia/include/pjmedia/config.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/pjmedia/include/pjmedia/config.h b/pjmedia/include/pjmedia/config.h
index 5eebe4cb..340d4584 100644
--- a/pjmedia/include/pjmedia/config.h
+++ b/pjmedia/include/pjmedia/config.h
@@ -394,7 +394,7 @@
/**
- * Specify the maximum duration of silence period in the codec.
+ * Specify the maximum duration of silence period in the codec, in msec.
* This is useful for example to keep NAT binding open in the firewall
* and to prevent server from disconnecting the call because no
* RTP packet is received.
@@ -405,11 +405,11 @@
*
* Use (-1) to disable this feature.
*
- * Default: 8000 (one second on 8KHz).
+ * Default: 500 ms
*
*/
#ifndef PJMEDIA_CODEC_MAX_SILENCE_PERIOD
-# define PJMEDIA_CODEC_MAX_SILENCE_PERIOD 8000
+# define PJMEDIA_CODEC_MAX_SILENCE_PERIOD 500
#endif