[asterisk-commits] tilghman: trunk r225102 - /trunk/apps/app_meetme.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Oct 21 10:43:08 CDT 2009
Author: tilghman
Date: Wed Oct 21 10:42:47 2009
New Revision: 225102
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=225102
Log:
Apparently, I don't need to specify the ".so" suffix to get a match
Modified:
trunk/apps/app_meetme.c
Modified: trunk/apps/app_meetme.c
URL: http://svnview.digium.com/svn/asterisk/trunk/apps/app_meetme.c?view=diff&rev=225102&r1=225101&r2=225102
==============================================================================
--- trunk/apps/app_meetme.c (original)
+++ trunk/apps/app_meetme.c Wed Oct 21 10:42:47 2009
@@ -2407,7 +2407,7 @@
}
/* Reduce background noise from each participant */
- if ((mod_speex = ast_module_helper("", "codec_speex.so", 0, 0, 0, 0)) || (mod_speex = ast_module_helper("", "codec_speex", 0, 0, 0, 0))) {
+ if ((mod_speex = ast_module_helper("", "codec_speex", 0, 0, 0, 0))) {
ast_free(mod_speex);
ast_func_write(chan, "DENOISE(rx)", "on");
}
More information about the asterisk-commits
mailing list