[Freeswitch-svn] [commit] r10840 - freeswitch/trunk/src/mod/codecs/mod_siren

FreeSWITCH SVN brian at freeswitch.org
Tue Dec 16 15:46:51 PST 2008


Author: brian
Date: Tue Dec 16 18:46:49 2008
New Revision: 10840

Log:
60ms max

Modified:
   freeswitch/trunk/src/mod/codecs/mod_siren/mod_siren.c

Modified: freeswitch/trunk/src/mod/codecs/mod_siren/mod_siren.c
==============================================================================
--- freeswitch/trunk/src/mod/codecs/mod_siren/mod_siren.c	(original)
+++ freeswitch/trunk/src/mod/codecs/mod_siren/mod_siren.c	Tue Dec 16 18:46:49 2008
@@ -147,7 +147,7 @@
 	SWITCH_ADD_CODEC(codec_interface, "Polycom(R) G722.1/G722.1C");
 
 	spf = 320, bpf = 640;
-	for (count = 4; count > 0; count--) {
+	for (count = 3; count > 0; count--) {
 		switch_core_codec_add_implementation(pool,
 											 codec_interface,
 											 SWITCH_CODEC_TYPE_AUDIO,	/* enumeration defining the type of the codec */
@@ -169,7 +169,7 @@
 											 switch_siren_destroy);		/* deinitalize a codec handle using this implementation */
 	}
 	spf = 640, bpf = 1280;
-	for (count = 4; count > 0; count--) {
+	for (count = 3; count > 0; count--) {
 		switch_core_codec_add_implementation(pool,
 											 codec_interface,
 											 SWITCH_CODEC_TYPE_AUDIO,	/* enumeration defining the type of the codec */



More information about the Freeswitch-svn mailing list