From a59eb30e780edb218288b3082b8b863ecb73d148 Mon Sep 17 00:00:00 2001 From: Monty Date: Mon, 4 Oct 1999 18:45:27 +0000 Subject: [PATCH] Corrected prototype argument naming error Monty svn path=/trunk/vorbis/; revision=138 --- lib/codec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/codec.h b/lib/codec.h index 82eb1ba..5470b22 100644 --- a/lib/codec.h +++ b/lib/codec.h @@ -320,7 +320,7 @@ extern int vorbis_synthesis_init(vorbis_dsp_state *v,vorbis_info *vi); extern int vorbis_synthesis(vorbis_block *vb,ogg_packet *op); extern int vorbis_synthesis_blockin(vorbis_dsp_state *v,vorbis_block *vb); extern int vorbis_synthesis_pcmout(vorbis_dsp_state *v,double ***pcm); -extern int vorbis_synthesis_read(vorbis_dsp_state *v,int bytes); +extern int vorbis_synthesis_read(vorbis_dsp_state *v,int samples); #define min(x,y) ((x)>(y)?(y):(x)) #define max(x,y) ((x)<(y)?(y):(x)) -- 2.7.4