From 817fc344e7fa2eb61f91742f80f83416262c9754 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Sun, 29 Jun 2003 03:25:00 +0000 Subject: [PATCH] Default to allowing H.263 but not H.261 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1132 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index e911962c38..7d108e2bb7 100755 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -114,7 +114,7 @@ static pthread_t monitor_thread = 0; static int restart_monitor(void); /* Codecs that we support by default: */ -static int capability = AST_FORMAT_ULAW | AST_FORMAT_ALAW | AST_FORMAT_GSM | AST_FORMAT_H261; +static int capability = AST_FORMAT_ULAW | AST_FORMAT_ALAW | AST_FORMAT_GSM | AST_FORMAT_H263; static int noncodeccapability = AST_RTP_DTMF; static char ourhost[256];