Displaying 1 result from an estimated 1 matches for "zerobundl".
Did you mean:
zerobundle
2001 Sep 28
0
Borland compiler issues
...ms unusable right now. The Windows SDK does not appear
to include source code or Borland compatible libraries.
One thing I've noticed about the nightly CVS code is that the nested
alloca() calls seem to confuse Borland's compiler. I had to change
code in mapping0_forward() from:
zerobundle[0]=alloca(sizeof(int)*vi->channels);
to:
z=alloca(sizeof(int)*vi->channels); /* int *z; */
zerobundle[0]=z;
I'm considering that yet another Borland compiler bug.
Another problem I found is that in vorbis_analysis_wrote(), the line
vorbis_lpc_predict(lpc,v-&...