From 0997e96229e9234f6841077c593c91e2c9b2043d Mon Sep 17 00:00:00 2001 From: arpi Date: Wed, 29 Jan 2003 22:45:07 +0000 Subject: [PATCH] - fixed the input buffering (don't read input unless we're already processed all decoded samples) - fix 100l bug: uninitialized ogg_packet structure caused tremor to hang git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9170 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/ad_libvorbis.c | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/libmpcodecs/ad_libvorbis.c b/libmpcodecs/ad_libvorbis.c index 565a1f3a82..3b71151c10 100644 --- a/libmpcodecs/ad_libvorbis.c +++ b/libmpcodecs/ad_libvorbis.c @@ -188,22 +188,24 @@ static int decode_audio(sh_audio_t *sh,unsigned char *buf,int minlen,int maxlen) int samples; float **pcm; float scale; - ogg_packet op; struct ov_struct_st *ov = sh->context; - op.b_o_s = op.e_o_s = 0; while(len < minlen) { - op.bytes = ds_get_packet(sh->ds,&op.packet); - if(!op.packet) - break; - if(vorbis_synthesis(&ov->vb,&op)==0) /* test for success! */ - vorbis_synthesis_blockin(&ov->vd,&ov->vb); - while((samples=vorbis_synthesis_pcmout(&ov->vd,&pcm))>0){ + while((samples=vorbis_synthesis_pcmout(&ov->vd,&pcm))<=0){ + ogg_packet op; + memset(&op,0,sizeof(op)); //op.b_o_s = op.e_o_s = 0; + op.bytes = ds_get_packet(sh->ds,&op.packet); + if(op.bytes<=0) break; + if(vorbis_synthesis(&ov->vb,&op)==0) /* test for success! */ + vorbis_synthesis_blockin(&ov->vd,&ov->vb); + } + if(samples<=0) break; // error/EOF + while(samples>0){ int i,j; int clipflag=0; int convsize=(maxlen-len)/(2*ov->vi.channels); // max size! - int bout=(samplesvd.sequence)); len+=2*ov->vi.channels*bout; mp_msg(MSGT_DECAUDIO,MSGL_DBG2,"\n[decoded: %d / %d ]\n",bout,samples); + samples-=bout; vorbis_synthesis_read(&ov->vd,bout); /* tell libvorbis how many samples we actually consumed */ - } + } //while(samples>0) +// if (!samples) break; // why? how? }