Displaying 4 results from an estimated 4 matches for "time_param".
2001 Sep 04
1
Problems trying to run the examples in windows vorbis sdk
...setup_partialcopy(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...
2001 Sep 05
4
Problems trying to run the examples in windows v orbis 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]);
>}
>...
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
disapp...
2001 Sep 03
0
FW: Problems trying to run the examples in windows vorbis sdk
...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]);
}
...
-----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...
2000 Nov 09
3
Vorbis packet #3, codebooks and their large size
...r small audio samples like
speech because there is always that ~10K overhead for packet 3. With
hundreds of samples in memory (or disk), it becomes an issue.
Would we be breaking any patents if we modified the encoder and decoder to
pass just the mode type instead of the all the mode information (time_param,
floor_param, res_param, mapping_param)?
In the future (version 1.0) would the codebooks still be included in the
vorbis stream or will they eventually be part of both the encoder and the
decoder?
Thanks.
---------------------------
Anish Dave
Univ. of Waterloo
Comp Sci.
--- >8 ----
List arch...