summaryrefslogtreecommitdiff
path: root/lib/synthesis.c
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2000-06-15 09:18:34 +0000
committerMonty <xiphmont@xiph.org>2000-06-15 09:18:34 +0000
commitc9b627e4442c3d487adb10c102f6a40c01fe43f8 (patch)
treecac39df264cd77254d8537e29921f00f2e1bcba7 /lib/synthesis.c
parenta8b4a1a24eff6bf70ad16f43efd9a856c9684561 (diff)
downloadlibvorbis-git-c9b627e4442c3d487adb10c102f6a40c01fe43f8.tar.gz
proper truncated packet support
Monty svn path=/trunk/vorbis/; revision=450
Diffstat (limited to 'lib/synthesis.c')
-rw-r--r--lib/synthesis.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/synthesis.c b/lib/synthesis.c
index 031d6cd4..7812149a 100644
--- a/lib/synthesis.c
+++ b/lib/synthesis.c
@@ -12,7 +12,7 @@
********************************************************************
function: single-block PCM synthesis
- last mod: $Id: synthesis.c,v 1.15 2000/02/12 08:33:10 xiphmont Exp $
+ last mod: $Id: synthesis.c,v 1.16 2000/06/15 09:18:34 xiphmont Exp $
********************************************************************/
@@ -27,7 +27,7 @@ int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){
vorbis_info *vi=vd->vi;
oggpack_buffer *opb=&vb->opb;
int type,mode,i;
-
+
/* first things first. Make sure decode is ready */
_vorbis_block_ripcord(vb);
_oggpack_readinit(opb,op->packet,op->bytes);
@@ -40,11 +40,14 @@ int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){
/* read our mode and pre/post windowsize */
mode=_oggpack_read(opb,vd->modebits);
+ if(mode==-1)return(-1);
+
vb->mode=mode;
vb->W=vi->mode_param[mode]->blockflag;
if(vb->W){
vb->lW=_oggpack_read(opb,1);
vb->nW=_oggpack_read(opb,1);
+ if(vb->nW==-1) return(-1);
}else{
vb->lW=0;
vb->nW=0;