Displaying 4 results from an estimated 4 matches for "_residue_p".
Did you mean:
_residue
2001 Oct 17
2
win32sdk shared memory issue -- proposed change of code
...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 thought I'd present the proposed change to...
2001 Oct 08
1
win32sdk shared memory issue
Hi vorbis-devs,
I use the Ogg Vorbis libraries built from the win32sdk in winlame. Since the
rc2 DLL's are not functioning, I compiled them by myself. The apparent reason
is that some data arrays like _residue_P were not shared among DLLs.
I looked at the code, and found that IMHO dirty hack in
vorbis/win32/src/shmmap*.h that maps the data arrays.
Why not placing the data arrays in shared segments?
http://support.microsoft.com/support/kb/articles/Q100/6/34.ASP is a good
description how to achieve that...
2018 Apr 27
0
[RFC][PATCH] Remove private symbols from Vorbis shared libs
...ing0_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
residue2_exportbundle
_residue_P
_ve_envelope_clear
_ve_envelope_init
_ve_envelope_mark
_ve_envelope_search
_ve_envelope_shift
_vi_gpsy_free
_vi_psy_free
_vorbis_apply_window
vorbis_bitrate_clear
vorbis_bitrate_init
vorbis_bitrate_managed
_vorbis_block_alloc
_vorbis_block_ripcord
vorbis_book_clear
vorbis_book_codelen
vorbis_book_c...
2002 Jan 02
2
RC3 Changes needed for MacOS
...s_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 2000/11/22 06:15...