Skip to content
Snippets Groups Projects
Commit 9693d058 authored by Ben Kramer's avatar Ben Kramer
Browse files

/ fix to for compiling with both 2.4.x and 3.x vpb-drivers

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6943 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent b2c2b5cd
No related branches found
No related tags found
No related merge requests found
......@@ -1518,7 +1518,11 @@ static void mkbrd(vpb_model_t model, int echo_cancel)
vpb_echo_canc_enable();
ast_log(LOG_NOTICE, "Voicetronix echo cancellation ON\n");
if (ec_supp_threshold > -1){
#ifdef VPB_PRI
vpb_echo_canc_set_sup_thresh(0,(short *)&ec_supp_threshold);
#else
vpb_echo_canc_set_sup_thresh((short *)&ec_supp_threshold);
#endif
ast_log(LOG_NOTICE, "Voicetronix EC Sup Thres set\n");
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment