From 7c56918262079b7bd940ddeefa9a659738d83b08 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Tue, 6 Nov 2007 22:51:48 +0000 Subject: Commit some cleanups to the format type code. - Remove the AST_FORMAT_MAX_* types, as these are consuming 3 out of our available 32 bits. - Add a native slin16 type, so that 16kHz codecs can translate without losing resolution. (This doesn't affect anything immediately, until another codec has wb support.) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89071 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_h323.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'channels/chan_h323.c') diff --git a/channels/chan_h323.c b/channels/chan_h323.c index da324cf6d..99b2086ae 100644 --- a/channels/chan_h323.c +++ b/channels/chan_h323.c @@ -249,7 +249,7 @@ static int oh323_fixup(struct ast_channel *oldchan, struct ast_channel *newchan) static const struct ast_channel_tech oh323_tech = { .type = "H323", .description = tdesc, - .capabilities = ((AST_FORMAT_MAX_AUDIO << 1) - 1), + .capabilities = AST_FORMAT_AUDIO_MASK, .properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER, .requester = oh323_request, .send_digit_begin = oh323_digit_begin, @@ -1739,7 +1739,7 @@ static struct ast_channel *oh323_request(const char *type, int format, void *dat return NULL; } oldformat = format; - format &= ((AST_FORMAT_MAX_AUDIO << 1) - 1); + format &= AST_FORMAT_AUDIO_MASK; if (!format) { ast_log(LOG_NOTICE, "Asked to get a channel of unsupported format '%d'\n", format); oh323_destroy(pvt); -- cgit v1.2.3