search for: _float32_unpack

Displaying 3 results from an estimated 3 matches for "_float32_unpack".

2001 Jan 13
4
Oggenc bug & other
...hould add them... 3. I cannot compile the Winamp-plugin, because the "httpstream.h" is missing... (and maybe other files too) Is that file part of MSVC or something other? Because I didn't find it on my MSVC CD either... 4. a small modification 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...
2018 Apr 27
0
[RFC][PATCH] Remove private symbols from Vorbis shared libs
...e sense to filter them via -fvisibility=hidden and -Wl,--version-script? I attached a draft patch. Best regards, Yury Gribov -------------- next part -------------- _book_maptype1_quantvals _book_unquantize __bss_start drft_backward drft_clear drft_forward drft_init _edata _end _fini _float32_pack _float32_unpack floor0_exportbundle floor1_encode floor1_exportbundle floor1_fit floor1_interpolate_fit _floor_P _init _make_words mapping0_exportbundle _mapping_P mdct_backward mdct_clear mdct_forward mdct_init ov_ilog res0_free_info res0_free_look res0_inverse res0_look res0_pack res0_unpack res1_class res1_forw...
2001 May 01
1
encoder observation
Hello! First of all a question: When you make the encoder tables (ie: mode_e.h) do you use the mapping0_forward function? Because you made the encoder tables, and after this you did a minor correction in the final beta4 ... (this correction was: additional[0]=fabs(additional[0]*scale); in the mapping0_forward function) (I see this was a bug, and the modification was correct, but this correction