Remove a misleading comment about VBR quality request range.
authorRalph Giles <giles@xiph.org>
Wed, 20 Jan 2010 01:42:54 +0000 (01:42 +0000)
committerRalph Giles <giles@xiph.org>
Wed, 20 Jan 2010 01:42:54 +0000 (01:42 +0000)
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

include/vorbis/vorbisenc.h

index d04fca4..684a41c 100644 (file)
@@ -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
                                   );
 
 /**