summaryrefslogtreecommitdiff
path: root/synthesis.c
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2002-10-16 07:39:56 +0000
committerMonty <xiphmont@xiph.org>2002-10-16 07:39:56 +0000
commit049a933452752e5efb7a63637bc24ea256b0b2db (patch)
treeb89a209bd2ad50d0885f9b3de9e13a87cc8d2364 /synthesis.c
parentbfda38a39936e30706da014cb0f40fab4ccd7ad1 (diff)
downloadtremor-049a933452752e5efb7a63637bc24ea256b0b2db.tar.gz
mdct comment change (correct the vorbis window function description)
Roll a libvorbis fix into tremor (if audio stream has only one page and that page is a short page) Monty git-svn-id: https://svn.xiph.org/trunk/Tremor@4008 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'synthesis.c')
-rw-r--r--synthesis.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/synthesis.c b/synthesis.c
index 47e27b1..47cd8b1 100644
--- a/synthesis.c
+++ b/synthesis.c
@@ -12,7 +12,7 @@
********************************************************************
function: single-block PCM synthesis
- last mod: $Id: synthesis.c,v 1.2 2002/09/03 03:15:19 xiphmont Exp $
+ last mod: $Id: synthesis.c,v 1.3 2002/10/16 07:39:56 xiphmont Exp $
********************************************************************/
@@ -26,7 +26,7 @@
int vorbis_synthesis(vorbis_block *vb,ogg_packet *op){
vorbis_dsp_state *vd=vb->vd;
- backend_lookup_state *b=(backend_lookup_state *)vd->backend_state;
+ private_state *b=(private_state *)vd->backend_state;
vorbis_info *vi=vd->vi;
codec_setup_info *ci=(codec_setup_info *)vi->codec_setup;
oggpack_buffer *opb=&vb->opb;