Displaying 1 result from an estimated 1 matches for "backend_lookup_state".
2003 Oct 09
0
Vorbis plugin for RealOne Player
...n for RealOne Player through the 
HelixCommunity source. During runtime, however, I saw an access violation. 
I did some debugging and narrowed it down to the following function in the 
Vorbis source..
int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){
   vorbis_dsp_state     *vd=vb->vd;
   backend_lookup_state *b=vd->backend_state;
   vorbis_info          *vi=vd->vi;
   codec_setup_info     *ci=vi->codec_setup;
   oggpack_buffer       *opb=&vb->opb;
   int                   type,mode,i;
   /* first things first.  Make sure decode is ready */
   _vorbis_block_ripcord(vb);
   oggpack_readi...