Displaying 1 result from an estimated 1 matches for "ov_enotaudio".
2003 Oct 09
0
Vorbis plugin for RealOne Player
...int type,mode,i;
/* first things first. Make sure decode is ready */
_vorbis_block_ripcord(vb);
oggpack_readinit(opb,op->packet,op->bytes);
/* Check the packet type */
if(oggpack_read(opb,1)!=0){
/* Oops. This is not an audio data packet */
return(OV_ENOTAUDIO);
}
/* read our mode and pre/post windowsize */
mode=oggpack_read(opb,b->modebits);
if(mode==-1)return(OV_EBADPACKET);
......
...
..
}
<p>The access violation is occuring in the oggpack_read() func and it is
because the backend_lookup_state pointer (b) is null. There should b...