[Asterisk-cvs] asterisk rtp.c,1.46,1.47

martinp at lists.digium.com martinp at lists.digium.com
Tue Nov 25 14:49:07 CST 2003


Update of /usr/cvsroot/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv26001

Modified Files:
	rtp.c 
Log Message:
Change the warning message if we can't do native bridge because of diffrent codecs


Index: rtp.c
===================================================================
RCS file: /usr/cvsroot/asterisk/rtp.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- rtp.c	25 Nov 2003 16:26:15 -0000	1.46
+++ rtp.c	25 Nov 2003 21:15:28 -0000	1.47
@@ -1201,7 +1201,7 @@
 		codec1 = pr1->get_codec(c1);
 		/* Hey, we can't do reinvite if both parties speak diffrent codecs */
 		if (codec0 != codec1) {
-			ast_log(LOG_WARNING, "codec0 = %d is not codec1 = %d, can't do reinvite\n",codec0,codec1);
+			ast_log(LOG_WARNING, "codec0 = %d is not codec1 = %d, cannot native bridge.\n",codec0,codec1);
 			ast_mutex_unlock(&c0->lock);
 			ast_mutex_unlock(&c1->lock);
 			return -2;




More information about the svn-commits mailing list