summaryrefslogtreecommitdiff
path: root/examples/encoder_example.c
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2002-06-28 21:54:47 +0000
committerMonty <xiphmont@xiph.org>2002-06-28 21:54:47 +0000
commitba9ab917392c68121fb30a0edd11ce605c16dee4 (patch)
tree8c28ec9a566a8cd1c28cebcf46dc76e871e44f4c /examples/encoder_example.c
parentbe929e62f4e3a452184e95dbcefb166e9e297c03 (diff)
downloadlibvorbis-git-branch_monty_20020507.tar.gz
Fix overrange conditions in residue codebooksbranch_monty_20020507
svn path=/branches/branch_monty_20020507/vorbis/; revision=3436
Diffstat (limited to 'examples/encoder_example.c')
-rw-r--r--examples/encoder_example.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/encoder_example.c b/examples/encoder_example.c
index 22241ea7..6c29fa22 100644
--- a/examples/encoder_example.c
+++ b/examples/encoder_example.c
@@ -11,7 +11,7 @@
********************************************************************
function: simple example encoder
- last mod: $Id: encoder_example.c,v 1.40.2.7 2002/06/28 04:19:08 xiphmont Exp $
+ last mod: $Id: encoder_example.c,v 1.40.2.8 2002/06/28 21:54:36 xiphmont Exp $
********************************************************************/
@@ -97,8 +97,8 @@ int main(){
/* (quality mode .4: 44kHz stereo coupled, roughly 128kbps VBR) */
vorbis_info_init(&vi);
- //vorbis_encode_init(&vi,2,44100,-1,118000,-1);
- vorbis_encode_init_vbr(&vi,2,44100,.7);
+ //vorbis_encode_init(&vi,2,44100,-1,82000,-1);
+ vorbis_encode_init_vbr(&vi,2,44100,.9);
/* add a comment */
vorbis_comment_init(&vc);