summaryrefslogtreecommitdiff
path: root/pjmedia/include
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-09-18 14:11:29 +0000
committerBenny Prijono <bennylp@teluu.com>2008-09-18 14:11:29 +0000
commite7130aeee4d10c1da69568d32a78784f412adc3f (patch)
tree0ba5307eec60dfaf3c6db5e2e4fa07c35d350608 /pjmedia/include
parent079dfbcbbe8e1d401a106c097845fd777c809011 (diff)
More ticket #619: changed default Cordic loop from 8 to 10 to gain more accuracy, and updated tonegen.c with the results from ARM9 tests
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2294 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjmedia/include')
-rw-r--r--pjmedia/include/pjmedia/config.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/pjmedia/include/pjmedia/config.h b/pjmedia/include/pjmedia/config.h
index 86a408e9..2f008dad 100644
--- a/pjmedia/include/pjmedia/config.h
+++ b/pjmedia/include/pjmedia/config.h
@@ -577,7 +577,9 @@
/**
- * Specify the tone generator algorithm to be used.
+ * Specify the tone generator algorithm to be used. Please see
+ * http://trac.pjsip.org/repos/wiki/Tone_Generator for the performance
+ * analysis results of the various tone generator algorithms.
*
* Default value:
* - PJMEDIA_TONEGEN_FLOATING_POINT when PJ_HAS_FLOATING_POINT is set
@@ -600,10 +602,10 @@
*
* Valid values are 1 to 28.
*
- * Default value: 7
+ * Default value: 10
*/
#ifndef PJMEDIA_TONEGEN_FIXED_POINT_CORDIC_LOOP
-# define PJMEDIA_TONEGEN_FIXED_POINT_CORDIC_LOOP 7
+# define PJMEDIA_TONEGEN_FIXED_POINT_CORDIC_LOOP 10
#endif