Displaying 1 result from an estimated 1 matches for "noisewindowfix".
Did you mean:
noisewindowfixed
2001 Jul 16
0
MacOS patches
..._vp_compute_mask() in psy.c, but
with a "unsigned long *" parameter (it's the bark member of the
vorbis_look_psy structure). This causes CW6 to complain with:
Error : illegal implicit conversion from 'unsigned long *' to
'const long *'
psy.c line 696 p->vi->noisewindowfixed);
To get rid of this error, there are two possibilities: either change
the bark_noise_median() function to have a "const unsigned long *" as
second parameter (as in vorbis1.diff), or change the vorbis_look_psy
structure's bark member to a "long *" (as in vorbis2.diff). I&...