diff options
author | Segher Boessenkool <segher@xiph.org> | 2001-12-19 23:13:33 +0000 |
---|---|---|
committer | Segher Boessenkool <segher@xiph.org> | 2001-12-19 23:13:33 +0000 |
commit | 944ed8b3c710c8f40e7b4ec70f5cd7228016ee66 (patch) | |
tree | 8cdcf38a4ef5b6350f7a48863756dca0953bfe94 /lib/vorbisenc.c | |
parent | 8a1271e8f02b09e28b6c2179abe6751304210a80 (diff) | |
download | libvorbis-git-944ed8b3c710c8f40e7b4ec70f5cd7228016ee66.tar.gz |
Kill some warnings. Oh, and make examples compile again under
CodeWarrior. Oops.
svn path=/trunk/vorbis/; revision=2862
Diffstat (limited to 'lib/vorbisenc.c')
-rw-r--r-- | lib/vorbisenc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/vorbisenc.c b/lib/vorbisenc.c index f2613a1c..123f36cf 100644 --- a/lib/vorbisenc.c +++ b/lib/vorbisenc.c @@ -11,7 +11,7 @@ ******************************************************************** function: simple programmatic interface for encoder mode setup - last mod: $Id: vorbisenc.c,v 1.27 2001/12/19 08:10:03 xiphmont Exp $ + last mod: $Id: vorbisenc.c,v 1.28 2001/12/19 23:13:33 segher Exp $ ********************************************************************/ @@ -393,8 +393,8 @@ static int vorbis_encode_residue_setup(vorbis_info *vi,double q,int block, int i,iq=q*10; int n,k; - int partition_position; - int res_position; + int partition_position=0; + int res_position=0; int iterations=1; int amplitude_select=0; |