summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2006-01-07 17:54:22 +0000
committerMark Spencer <markster@digium.com>2006-01-07 17:54:22 +0000
commite2ef61814fc960fa878d8f7b7ac98d27c51fc6ca (patch)
tree34e09d3fba69a40757b42b46d8656a74744e6c7b /channel.c
parent33323ac720234c5ed8d2e38496acb3acee8379de (diff)
Add support for H.264 with SIP and recording
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7855 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rw-r--r--channel.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/channel.c b/channel.c
index d35caf53d..3062f6bcc 100644
--- a/channel.c
+++ b/channel.c
@@ -2305,6 +2305,9 @@ 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;
/* Find a translation path from the native format to one of the desired formats */
if (!direction)