search for: book_param

Displaying 3 results from an estimated 3 matches for "book_param".

2001 Sep 04
1
Problems trying to run the examples in windows vorbis sdk
...which exact line the error is. Inside the vorbisenc.c, we have the following function: static void codec_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...
2001 Sep 03
0
FW: Problems trying to run the examples in windows vorbis sdk
...e error is. Inside the vorbisenc.c, we have the following function: tatic void codec_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]); } ... -----Original Message----- From: Pablos-Sanchez, Rolando Se...
2001 Sep 05
4
Problems trying to run the examples in windows v orbis sdk
...gt;Inside the vorbisenc.c, we have the following function: >static void codec_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]); >} >... The work around for this problem is to include vo...