From: Kevin P. Fleming Date: Tue, 31 Jan 2006 03:45:09 +0000 (+0000) Subject: Yes Virginia, Zaptel does support native ALAW X-Git-Tag: 1.4.0-beta1~2749 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d819679da0480e3f4eab9066caa33e4a8a799f02;p=thirdparty%2Fasterisk.git Yes Virginia, Zaptel does support native ALAW git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@8961 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_zap.c b/channels/chan_zap.c index 7dd62329de..90f0801a75 100644 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -711,7 +711,7 @@ static int zt_setoption(struct ast_channel *chan, int option, void *data, int da static const struct ast_channel_tech zap_tech = { .type = type, .description = tdesc, - .capabilities = AST_FORMAT_SLINEAR | AST_FORMAT_ULAW, + .capabilities = AST_FORMAT_SLINEAR | AST_FORMAT_ULAW | AST_FORMAT_ALAW, .requester = zt_request, .send_digit = zt_digit, .send_text = zt_sendtext,