<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt"><DIV>Jean-Marc,</DIV>
<DIV>&nbsp;</DIV>
<DIV>I have a few more that could be similar:</DIV>
<DIV>&nbsp;</DIV>
<DIV>In celt.c, in <FONT size=2>celt_decode_float, in the return statement </FONT></DIV>
<DIV><FONT size=2>"<B><FONT color=#7f0055 size=2><FONT color=#7f0055 size=2>return</B></FONT></FONT><FONT size=2> celt_decode_with_ec_float(st, data, len, pcm, frame_size, </FONT><B><FONT color=#7f0055 size=2><FONT color=#7f0055 size=2>NULL</B></FONT></FONT><FONT size=2>);"</FONT></DIV>
<P><FONT size=2></FONT>&nbsp;</P>
<P><FONT size=2>...my compiler says</FONT></P>
<P><FONT size=2>"argument of type "float *" is incompatible with parameter of type "celt_sig *restrict"&nbsp;libcelt80/libcelt&nbsp;celt.c&nbsp;line 1888&nbsp;1278457880500&nbsp;9106</FONT></P>
<P><FONT size=2></FONT>&nbsp;</P>
<P><FONT size=2>However, in my config.h file I have :</FONT></P><FONT size=2><B><FONT color=#7f0055 size=2><FONT color=#7f0055 size=2>
<P>#define</B></FONT></FONT><FONT size=2> DISABLE_FLOAT_API</P></FONT><B><FONT color=#7f0055 size=2><FONT color=#7f0055 size=2>
<P>#define</B></FONT></FONT><FONT size=2> FIXED_POINT</P>
<P></FONT>&nbsp;</P>
<P>Did I miss a #define somewhere?</P>
<P>&nbsp;</P>
<P>thx</P>
<P>&nbsp;</P>
<P>Mike</P>
<P>&nbsp;</P>
<P><BR></P></FONT></FONT>
<DIV><BR></DIV>
<DIV style="FONT-FAMILY: times new roman, new york, times, serif; FONT-SIZE: 12pt"><BR>
<DIV style="FONT-FAMILY: arial, helvetica, sans-serif; FONT-SIZE: 13px"><FONT size=2 face=Tahoma>
<HR SIZE=1>
<B><SPAN style="FONT-WEIGHT: bold">From:</SPAN></B> Jean-Marc Valin &lt;jean-marc.valin@usherbrooke.ca&gt;<BR><B><SPAN style="FONT-WEIGHT: bold">To:</SPAN></B> Mike Hooper Hooper &lt;mihooper@bellsouth.net&gt;<BR><B><SPAN style="FONT-WEIGHT: bold">Cc:</SPAN></B> celt-dev@xiph.org<BR><B><SPAN style="FONT-WEIGHT: bold">Sent:</SPAN></B> Tue, July 6, 2010 7:04:42 PM<BR><B><SPAN style="FONT-WEIGHT: bold">Subject:</SPAN></B> Re: [CELT-dev] V0.8.0 Problems<BR></FONT><BR>Hi Mike,<BR><BR>Thanks again on that other bug. It turns out that on most platforms <BR>"celt_int32" is the same as "int" so the compiler doesn't complain. <BR>Unfortunately, I haven't found any way to test for these kinds of issues <BR>that happen only on 16-bit platforms and I've had to rely on people like <BR>you compiling on such platforms. Let me know if you find anything else. <BR>This one is now fixed in git.<BR><BR>Thanks,<BR><BR>&nbsp;&nbsp;&nbsp; Jean-Marc<BR><BR>On 10-07-06 06:22 PM,
 Mike Hooper Hooper wrote:<BR>&gt; Jean-Marc,<BR>&gt;<BR>&gt; I wish I could take credit for finding the bug, but I'll have to give<BR>&gt; credit to my compiler....:)<BR>&gt;<BR>&gt; Let's now take a look at this code in bands.c<BR>&gt;<BR>&gt; " quant_band(encode, m, i, X, Y, N, b, spread, tf_change, lowband,<BR>&gt; resynth, ec, &amp;remaining_bits, LM, norm+M*eBands[i], bandE, 0);"<BR>&gt;<BR>&gt; My compiler says:<BR>&gt;<BR>&gt; "argument of type "int *" is incompatible with parameter of type<BR>&gt; "celt_int32 *" libcelt80/libcelt bands.c line 951 1278452093812 9084"<BR>&gt;<BR>&gt; I'm not exactly sure where the problem is. Can you see it?<BR>&gt;<BR>&gt; MikeH<BR>&gt;<BR>&gt; -----Original Message-----<BR>&gt;<BR>&gt; From: Jean-Marc Valin [mailto:<A href="mailto:jean-marc.valin@usherbrooke.ca" ymailto="mailto:jean-marc.valin@usherbrooke.ca">jean-marc.valin@usherbrooke.ca</A>]<BR>&gt;<BR>&gt; Sent: Tuesday, July 06, 2010 6:00 PM<BR>&gt;<BR>&gt;
 To: Mike Hooper Hooper<BR>&gt;<BR>&gt; Cc: <A href="mailto:celt-dev@xiph.org" ymailto="mailto:celt-dev@xiph.org">celt-dev@xiph.org</A><BR>&gt;<BR>&gt; Subject: Re: [CELT-dev] V0.8.0 Problems<BR>&gt;<BR>&gt; Hi Mike,<BR>&gt;<BR>&gt; Indeed, you found a bug! I missed it because the symptoms you saw only<BR>&gt;<BR>&gt; occurs in fixed-point with compilers that don't have var arrays or<BR>&gt;<BR>&gt; alloca(). It's fixed in git now. For now (commit b6a5f9), the git master<BR>&gt;<BR>&gt; branch is bitstream compatible with 0.8.0. I'll probably issue a 0.8.1<BR>&gt;<BR>&gt; bugfix release after we fix any remaining problems you have.<BR>&gt;<BR>&gt; Cheers,<BR>&gt;<BR>&gt; Jean-Marc<BR>&gt;<BR>&gt; On 10-07-06 04:52 PM, Mike Hooper Hooper wrote:<BR>&gt;<BR>&gt;&nbsp; &gt; Tim, et al,<BR>&gt;<BR>&gt;&nbsp; &gt; I have run into several problems with V0.8.0. I will address them<BR>&gt;<BR>&gt;&nbsp; &gt; seperately.<BR>&gt;<BR>&gt;&nbsp; &gt; 1. My compiler
 is complaining about the following code in celt.c which<BR>&gt;<BR>&gt;&nbsp; &gt; seems to define metric first as celt_word32, then as celt_word16. Am I<BR>&gt;<BR>&gt;&nbsp; &gt; mis-interpreting something?<BR>&gt;<BR>&gt;&nbsp; &gt; VARDECL(celt_word32, metric);<BR>&gt;<BR>&gt;&nbsp; &gt; ALLOC(metric, len, celt_word16);<BR>&gt;<BR>&gt;&nbsp; &gt; Thx<BR>&gt;<BR>&gt;&nbsp; &gt; MikeH<BR>&gt;<BR>&gt;&nbsp; &gt;<BR>&gt;<BR>&gt;&nbsp; &gt;<BR>&gt;<BR>&gt;&nbsp; &gt;<BR>&gt;<BR>&gt;&nbsp; &gt; _______________________________________________<BR>&gt;<BR>&gt;&nbsp; &gt; celt-dev mailing list<BR>&gt;<BR>&gt;&nbsp; &gt; <A href="mailto:celt-dev@xiph.org" ymailto="mailto:celt-dev@xiph.org">celt-dev@xiph.org</A><BR>&gt;<BR>&gt;&nbsp; &gt; http://lists.xiph.org/mailman/listinfo/celt-dev<BR>&gt;<BR></DIV></DIV></div></body></html>