Hi all,
Again i've got some problem compiling speex library from CVS for pocketpc
This time the compiler complains about every cast like this:
return (spx_float_t) {0,0};
Does anyone know a workaround for that?
Thanks
Fabio
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
http://lists.xiph.org/pipermail/speex-dev/attachments/20051231/4daa31a2/attachment.html
On Sat, Dec 31, 2005 at 03:09:02PM +0100, Fabio wrote:> Again i've got some problem compiling speex library from CVS for pocketpc > This time the compiler complains about every cast like this: > > return (spx_float_t) {0,0};Try adding spx_float_t zero = {0,0}; at the head of the function and then replacing the offending line with return zero; HTH, -r