Hi everyone,<div><br></div><div>Can this bug be fixed? Apparently the offending code is what is mentioned below by Danny Nicholas.</div><div><br></div><div>Regards,</div><div><br><br><div class="gmail_quote">---------- Forwarded message ----------<br>
From: <b class="gmail_sendername">Danny Nicholas</b> <span dir="ltr"><<a href="mailto:danny@debsinc.com" target="_blank">danny@debsinc.com</a>></span><br>Date: Wed, Dec 28, 2011 at 3:19 PM<br>
Subject: Re: [asterisk-users] Asterisk 1.8.7.1 forcing uLaw bug NOT fixed yet<br>To: Asterisk Users Mailing List - Non-Commercial Discussion <<a href="mailto:asterisk-users@lists.digium.com" target="_blank">asterisk-users@lists.digium.com</a>><br>
<br><br>This might or might not help, but here is the offending code in 1.8.8<br>
case AST_FRAME_VOICE:<br>
if (!(frame->subclass.codec & ast->nativeformats)) {<br>
char s1[512], s2[512], s3[512];<br>
ast_log(LOG_WARNING, "Asked to transmit frame type<br>
%s, while native formats is %s read/write = %s/%s\n",<br>
ast_getformatname(frame->subclass.codec),<br>
ast_getformatname_multiple(s1, sizeof(s1),<br>
ast->nativeformats & AST_FORMAT_AUDIO_MASK),<br>
ast_getformatname_multiple(s2, sizeof(s2),<br>
ast->readformat),<br>
ast_getformatname_multiple(s3, sizeof(s3),<br>
ast->writeformat));<br>
and the comparable code in 10.0.0<br>
case AST_FRAME_VOICE:<br>
if (!(ast_format_cap_iscompatible(ast->nativeformats,<br>
&frame->subclass.format))) {<br>
char s1[512];<br>
ast_log(LOG_WARNING, "Asked to transmit frame type<br>
%s, while native formats is %s read/write = %s/%s\n",<br>
ast_getformatname(&frame->subclass.format),<br>
ast_getformatname_multiple(s1, sizeof(s1),<br>
ast->nativeformats),<br>
ast_getformatname(&ast->readformat),<br>
ast_getformatname(&ast->writeformat));<br>
<br>
I personally avoided the 1.6 and 1.8 branches like the plague and don't know<br>
if this "bug" is corrected by the other fixes in 10.0.<br>
<div><br>
<br>
-----Original Message-----<br>
From: <a href="mailto:asterisk-users-bounces@lists.digium.com" target="_blank">asterisk-users-bounces@lists.digium.com</a><br>
[mailto:<a href="mailto:asterisk-users-bounces@lists.digium.com" target="_blank">asterisk-users-bounces@lists.digium.com</a>] On Behalf Of Eric Wieling<br>
Sent: Wednesday, December 28, 2011 2:05 PM<br>
To: Asterisk Users Mailing List - Non-Commercial Discussion<br>
</div><div><div></div><div>Subject: Re: [asterisk-users] Asterisk 1.8.7.1 forcing uLaw bug NOT fixed<br>
yet<br>
<br>
The issue is not fixed in 1.8.8.0 either.<br>
<br>
-----Original Message-----<br>
From: <a href="mailto:asterisk-users-bounces@lists.digium.com" target="_blank">asterisk-users-bounces@lists.digium.com</a><br>
[mailto:<a href="mailto:asterisk-users-bounces@lists.digium.com" target="_blank">asterisk-users-bounces@lists.digium.com</a>] On Behalf Of Bruce B<br>
Sent: Wednesday, December 28, 2011 3:00 PM<br>
To: Asterisk Users Mailing List - Non-Commercial Discussion<br>
Subject: [asterisk-users] Asterisk 1.8.7.1 forcing uLaw bug NOT fixed yet<br>
<br>
Hi everyone,<br>
<br>
I see that there was a bug in version 1.8.5.x and people were advised to<br>
move to 1.8.7.1 but now I have 1.8.7.1 and experiencing the same problem.<br>
Here is the output:<br>
<br>
"chan_sip.c: Asked to transmit frame type ulaw, while native formats is<br>
0x100 (g729) read/write = 0x100 (g729)/0x100 (g729)"<br>
<br>
<br>
Now, I see an update to 1.8.8.1 is available. I am wondering if this issue<br>
is fixed in this version or not? Furthermore, has anyone tested 1.8.8.1 yet?<br>
Are there any other problems to that? It's frustrating as I see we should<br>
once again move back to 1.6x and forget about 1.8x all together.<br>
<br>
Any input is appreciated.<br>
<br>
<br>
<br>
--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
<a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
<a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br>
<br>
<br>
--<br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
<a href="http://www.asterisk.org/hello" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
<a href="http://lists.digium.com/mailman/listinfo/asterisk-users" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br>
</div></div></div><br>
</div>