Displaying 6 results from an estimated 6 matches for "_time_p".
2001 Sep 05
4
Problems trying to run the examples in windows v orbis sdk
...p_info *cs){
>int i;
>memcpy(ci,cs,sizeof(codec_setup_info)); /* to get the flat numbers */
>/* codebooks */
>for(i=0;i<ci->books;i++){
>ci->book_param[i]=cs->book_param[i];
>}
>/* time backend settings */
>for(i=0;i<ci->times;i++){
>ci->time_param[i]=_time_P[ci->time_type[i]]-> // <---The error is in this
>line
>copy_info(cs->time_param[i]);
>}
>...
The work around for this problem is to include vorbisenc.c in the vorbis DLL
and not have a
separate, stand alone vorbisenc.dll. If you do this, then this problem
disappears. Obvi...
2001 Sep 04
1
Problems trying to run the examples in windows vorbis sdk
...opy(codec_setup_info *ci,
codec_setup_info *cs){
int i;
memcpy(ci,cs,sizeof(codec_setup_info)); /* to get the flat numbers */
/* codebooks */
for(i=0;i<ci->books;i++){
ci->book_param[i]=cs->book_param[i];
}
/* time backend settings */
for(i=0;i<ci->times;i++){
ci->time_param[i]=_time_P[ci->time_type[i]]-> // <---The error is in this
line
copy_info(cs->time_param[i]);
}
...
Finally, just to say that decoder_example.c compiles and works, so it seems
that the problem is just encoding.
I am using VC++ 6.0 under Windows 2000.
If anyone knows how I can fix this problem, pl...
2001 Oct 17
2
win32sdk shared memory issue -- proposed change of code
...limport)" attribute is required, such 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 pre...
2001 Sep 03
0
FW: Problems trying to run the examples in windows vorbis sdk
...codec_setup_info *cs){
int i;
memcpy(ci,cs,sizeof(codec_setup_info)); /* to get the flat numbers */
/* codebooks */
for(i=0;i<ci->books;i++){
ci->book_param[i]=cs->book_param[i];
}
/* time backend settings */
for(i=0;i<ci->times;i++){
ci->time_param[i]=_time_P[ci->time_type[i]]-> // <---The error is in
this line
copy_info(cs->time_param[i]);
}
...
-----Original Message-----
From: Pablos-Sanchez, Rolando
Sent: 03 September 2001 10:19
To: Vorbis (E-mail)
Subject: Problems trying to run the examples in windows vorbis sdk
I have just...
2002 Jan 02
2
RC3 Changes needed for MacOS
...23,6 +23,8 @@
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....
2000 Aug 23
0
explicit header deps: patch
...w/lib/registry.h vorbis.nowp/lib/registry.h
*** 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...