summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@xiph.org>2010-01-20 01:42:54 +0000
committerRalph Giles <giles@xiph.org>2010-01-20 01:42:54 +0000
commite64ef4e2490a003449d3da6afe0515ed3c08050b (patch)
treee7cf131beb0835840054c80ac760cfce5c0bcf27
parent13849b8c9255c3f8daaf271c827163e5d22cc9cd (diff)
downloadlibvorbis-git-e64ef4e2490a003449d3da6afe0515ed3c08050b.tar.gz
Remove a misleading comment about VBR quality request range.
The documentation says the range is -0.1 to 1.0, but these comments started the range at 0.0. Against expectations, it looks like the documentation is correct. Patch from Douglas Bagnall <douglas@paradise.net.nz>. svn path=/trunk/vorbis/; revision=16790
-rw-r--r--include/vorbis/vorbisenc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vorbis/vorbisenc.h b/include/vorbis/vorbisenc.h
index d04fca4f..684a41c4 100644
--- a/include/vorbis/vorbisenc.h
+++ b/include/vorbis/vorbisenc.h
@@ -130,7 +130,7 @@ extern int vorbis_encode_setup_vbr(vorbis_info *vi,
long channels,
long rate,
- float quality /* quality level from 0. (lo) to 1. (hi) */
+ float quality
);
/**
@@ -159,7 +159,7 @@ extern int vorbis_encode_init_vbr(vorbis_info *vi,
long channels,
long rate,
- float base_quality /* quality level from 0. (lo) to 1. (hi) */
+ float base_quality
);
/**