From dac6eeb7805aed4980b62b0cb5568b84732c81db Mon Sep 17 00:00:00 2001 From: qwell Date: Tue, 19 Feb 2008 22:35:23 +0000 Subject: Make sure to mask out non-audio first as well git-svn-id: http://svn.digium.com/svn/asterisk/trunk@103832 f38db490-d61c-443f-a65b-d21fe96a405b --- main/channel.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'main') diff --git a/main/channel.c b/main/channel.c index cece084fb..ecebc7062 100644 --- a/main/channel.c +++ b/main/channel.c @@ -3095,14 +3095,14 @@ static int set_format(struct ast_channel *chan, int fmt, int *rawformat, int *fo int native; int res; + /* Make sure we only consider audio */ + fmt &= AST_FORMAT_AUDIO_MASK; + native = chan->nativeformats; if (!fmt || !native) /* No audio requested */ return 0; /* Let's try a call without any sounds (video, text) */ - /* Make sure we only consider audio */ - fmt &= AST_FORMAT_AUDIO_MASK; - /* Find a translation path from the native format to one of the desired formats */ if (!direction) /* reading */ -- cgit v1.2.3