From 9693d058827cda41a7f0b270710137061697831e Mon Sep 17 00:00:00 2001 From: Ben Kramer Date: Wed, 2 Nov 2005 01:43:03 +0000 Subject: / 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 --- channels/chan_vpb.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'channels') diff --git a/channels/chan_vpb.c b/channels/chan_vpb.c index 76c53af9e..802d15a8d 100755 --- a/channels/chan_vpb.c +++ b/channels/chan_vpb.c @@ -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"); } } -- cgit v1.2.3