Displaying 1 result from an estimated 1 matches for "steppig".
Did you mean:
stepping
2005 Aug 05
1
debugging question.
...,
I am using libvorbis-1.0.1 and I am trying to debug the example decoder
(examples/decoder_example.c) using gdb. I have compiled the source tree
for debug and can single step through the program.
However i am facing the following problem (which I think is more of C
than vorbis)
1. after single steppig I finally arrive at the function shown below
(in file lib/info.c)
static int _vorbis_unpack_info(vorbis_info *vi,oggpack_buffer *opb){
196 codec_setup_info *ci=vi->codec_setup;
197 if(!ci)return(OV_EFAULT);
198
199 vi->version=oggpack_read(opb,32);
200 if(vi->version!=0)retu...