aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-21 15:42:47 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-21 15:42:47 +0000
commit0d9493012fd35eced39616848afbe6632cd56c65 (patch)
tree9f91b6fee27e40b46fbbe9f80d142df883a05bcd /apps/app_meetme.c
parent4ee1202b6ab002fe8f51993477e13f50095eff3e (diff)
Apparently, I don't need to specify the ".so" suffix to get a match
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@225102 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_meetme.c')
-rw-r--r--apps/app_meetme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index e66f0eac5..67dd8a2fd 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -2407,7 +2407,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
}
/* 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");
}