[Freeswitch-svn] [commit] r7409 - freeswitch/trunk/src/mod/formats/mod_local_stream
Freeswitch SVN
brian at freeswitch.org
Mon Jan 28 14:23:47 EST 2008
Author: brian
Date: Mon Jan 28 14:23:46 2008
New Revision: 7409
Modified:
freeswitch/trunk/src/mod/formats/mod_local_stream/mod_local_stream.c
Log:
we do support ultra-wideband too
Modified: freeswitch/trunk/src/mod/formats/mod_local_stream/mod_local_stream.c
==============================================================================
--- freeswitch/trunk/src/mod/formats/mod_local_stream/mod_local_stream.c (original)
+++ freeswitch/trunk/src/mod/formats/mod_local_stream/mod_local_stream.c Mon Jan 28 14:23:46 2008
@@ -397,7 +397,7 @@
if (!strcasecmp(var, "rate")) {
int tmp = atoi(val);
- if (tmp == 8000 || tmp == 16000) {
+ if (tmp == 8000 || tmp == 16000 || tmp == 32000) {
source->rate = tmp;
}
} else if (!strcasecmp(var, "shuffle")) {
More information about the Freeswitch-svn
mailing list