Displaying 3 results from an estimated 3 matches for "copy_info".
Did you mean:
copy_in
2001 Sep 05
4
Problems trying to run the examples in windows v orbis sdk
...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. Obviously,
since the vorbisenc code is quite large, and a lot of applications will o...
2001 Sep 04
1
Problems trying to run the examples in windows vorbis sdk
...izeof(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, please, let me know.
Thank you very much
--- >8 ----
List archives: h...
2001 Sep 03
0
FW: Problems trying to run the examples in windows vorbis sdk
...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 downloaded the vorbis sdk for windows, for researching purposes.
I have compil...