search for: vq_fexp_bia

Displaying 1 result from an estimated 1 matches for "vq_fexp_bia".

Did you mean: vq_fexp_bias
2001 Jan 13
4
Oggenc bug & other
...on in sharedbook.c: float _float32_unpack(long val){ long exp =(val&0x7fe00000)>>VQ_FMAN; // this have to be long, not float (or not?) float mant=(float)(val&0x1fffff); if(val&0x80000000) // sign mant= -mant; return((float)ldexp(mant,exp-(VQ_FMAN-1)-VQ_FEXP_BIAS)); } that's all regards Attila Padar --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-dev-request@xiph.org' containing only the word 'unsubscribe' in the bo...