summaryrefslogtreecommitdiff
path: root/drivers/dahdi
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2009-11-12 23:19:13 +0000
committerShaun Ruffell <sruffell@digium.com>2009-11-12 23:19:13 +0000
commit2015a36ad7a6df2a9b3d4dd820f30e812052c0f3 (patch)
tree5ebd94ecc019dd91e0ee78ba211b668856848b12 /drivers/dahdi
parent0da36253edab127f45e45a956cc0640363ad0b44 (diff)
wcte12xp, voicebus: Set the companding mode correctly on E1.
git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@7582 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi')
-rw-r--r--drivers/dahdi/voicebus/GpakCust.c1
-rw-r--r--drivers/dahdi/wcte12xp/base.c4
2 files changed, 4 insertions, 1 deletions
diff --git a/drivers/dahdi/voicebus/GpakCust.c b/drivers/dahdi/voicebus/GpakCust.c
index ec23336..b9964cf 100644
--- a/drivers/dahdi/voicebus/GpakCust.c
+++ b/drivers/dahdi/voicebus/GpakCust.c
@@ -442,6 +442,7 @@ int vpmadt032_echocan_create(struct vpmadt032 *vpm, int channo,
* module. Instead, it uses tap_length to enable or disable the echo
* cancellation. */
order->params.tap_length = (ecp->tap_length) ? 1 : 0;
+ order->params.companding = vpm->companding;
order->channel = channo;
vpmadt032_check_and_schedule_update(vpm, order);
diff --git a/drivers/dahdi/wcte12xp/base.c b/drivers/dahdi/wcte12xp/base.c
index af8b366..c4c4b2b 100644
--- a/drivers/dahdi/wcte12xp/base.c
+++ b/drivers/dahdi/wcte12xp/base.c
@@ -349,12 +349,14 @@ static int config_vpmadt032(struct vpmadt032 *vpm, struct t1 *wc)
return -1;
}
+ vpm->companding = (TYPE_T1 == wc->spantype) ?
+ ADT_COMP_ULAW : ADT_COMP_ALAW;
for (channel = 0; channel < ARRAY_SIZE(vpm->curecstate); ++channel) {
vpm->curecstate[channel].tap_length = 0;
vpm->curecstate[channel].nlp_type = vpm->options.vpmnlptype;
vpm->curecstate[channel].nlp_threshold = vpm->options.vpmnlpthresh;
vpm->curecstate[channel].nlp_max_suppress = vpm->options.vpmnlpmaxsupp;
- vpm->curecstate[channel].companding = (wc->spantype == TYPE_T1) ? ADT_COMP_ULAW : ADT_COMP_ALAW;
+ vpm->curecstate[channel].companding = vpm->companding;
vpm->setchanconfig_from_state(vpm, channel, &chanconfig);
if ((res = gpakConfigureChannel(vpm->dspid, channel, tdmToTdm, &chanconfig, &cstatus))) {