Make sure to mask out non-audio first as well

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@103832 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Jason Parker 2008-02-19 22:35:23 +00:00
parent 59bdc278be
commit 63ab8ad66c
1 changed files with 3 additions and 3 deletions

View File

@ -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 */