Displaying 4 results from an estimated 4 matches for "_floor_p".
2001 Oct 17
2
win32sdk shared memory issue -- proposed change of code
...h that
a modification of "vorbis/lib/registry.h" is required which would look like:
#if defined(_MSC_VER) && defined(DLL_IMPORT)
# define EXTERN _declspec(dllimport) extern
#else
# define EXTERN extern
#endif
EXTERN vorbis_func_time *_time_P[];
EXTERN vorbis_func_floor *_floor_P[];
EXTERN vorbis_func_residue *_residue_P[];
EXTERN vorbis_func_mapping *_mapping_P[];
I realize the aesthetics of having "EXTERN" instead of "extern" may be an issue on
non-win32 platforms, (although in this case it would still preprocess out to "extern")
so I th...
2018 Apr 27
0
[RFC][PATCH] Remove private symbols from Vorbis shared libs
...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_forward
res1_inverse
res2_class
res2_forward
res2_inverse
residue0_exportbundle
residue1_exportbundle...
2002 Jan 02
2
RC3 Changes needed for MacOS
...@@
vorbis_analysis_wrote
vorbis_analysis_blockout
vorbis_analysis
+vorbis_bitrate_addblock
+vorbis_bitrate_flushpacket
# Vorbis PRIMITIVES: synthesis layer
@@ -43,10 +45,10 @@
_vi_psy_copy
_vp_compute_mask
-_vp_apply_floor
### From "xxx.h" (for VorbisEncLib)
_time_P
_floor_P
_residue_P
_mapping_P
+residue_free_info
Index: mac/libvorbisenc.mcp.exp
===================================================================
RCS file: /usr/local/cvsroot/vorbis/mac/libvorbisenc.mcp.exp,v
retrieving revision 1.1
diff -u -r1.1 libvorbisenc.mcp.exp
--- mac/libvorbisenc.mcp.exp 200...
2000 Aug 23
0
explicit header deps: patch
...*** vorbis.now/lib/registry.h Sat Jan 22 08:28:30 2000
--- vorbis.nowp/lib/registry.h Wed Aug 23 13:15:48 2000
***************
*** 27,30 ****
--- 27,32 ----
#define VI_MAPB 1
+ #include "vorbis/backends.h"
+
extern vorbis_func_time *_time_P[];
extern vorbis_func_floor *_floor_P[];
diff -c2 -bBw -r -x Mak* -x conf* -x CVS -x *.c vorbis.now/lib/spectrum.h vorbis.nowp/lib/spectrum.h
*** vorbis.now/lib/spectrum.h Tue Jan 4 04:05:04 2000
--- vorbis.nowp/lib/spectrum.h Wed Aug 23 13:15:48 2000
***************
*** 20,23 ****
--- 20,25 ----
#define _V_SPECT_H_
+ #include &...