summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2009-03-24 21:40:44 +0000
committerRussell Bryant <russell@russellbryant.com>2009-03-24 21:40:44 +0000
commit7460afdd46d7b0808751f24e75aee1262ad8103d (patch)
tree96707788147b19be5a76ca6e4206831ee8436881 /channels
parentda2230adf081d932294ffe5f2629ad66cc338917 (diff)
Exclude slin16, siren7, and siren14 from bandwidth=low and =medium
The default codec configuration for chan_iax2 is bandwidth=low. I noticed slin16 being negotiated as the codec in some test calls, but that no longer happens after this change. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@184037 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_iax2.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index b2559a02f..48dd24a2a 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -270,6 +270,9 @@ int (*iax2_regfunk)(const char *username, int onoff) = NULL;
/* T1, maybe ISDN */
#define IAX_CAPABILITY_MEDBANDWIDTH (IAX_CAPABILITY_FULLBANDWIDTH & \
~AST_FORMAT_SLINEAR & \
+ ~AST_FORMAT_SLINEAR16 & \
+ ~AST_FORMAT_SIREN7 & \
+ ~AST_FORMAT_SIREN14 & \
~AST_FORMAT_ULAW & \
~AST_FORMAT_ALAW & \
~AST_FORMAT_G722)