summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2009-05-30 00:12:24 +0000
committerJens Arnold <amiconn@rockbox.org>2009-05-30 00:12:24 +0000
commit31c279e8802938cde7b1fda619701aaf25db7fbf (patch)
treebe397a4f7246f39fb2714bc20e32de8da64f872b
parenta9955c584fa3a53f229cc0cf9e7fe4675ecd56ce (diff)
downloadrockbox-31c279e8802938cde7b1fda619701aaf25db7fbf.tar.gz
rockbox-31c279e8802938cde7b1fda619701aaf25db7fbf.zip
Lame 3.98 changed the -V parameter from integer to floating point. Now we need -V 9.999 in order to get the smallest possible size as before. Earlier versions just read that as -V 9, so no need to differentiate.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21133 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xtools/configure2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/configure b/tools/configure
index 75908fe60c..e7cb4943f8 100755
--- a/tools/configure
+++ b/tools/configure
@@ -579,7 +579,7 @@ voiceconfig () {
579 if [ -n "`findtool lame`" ]; then 579 if [ -n "`findtool lame`" ]; then
580 ENCODER="lame" 580 ENCODER="lame"
581 ENC_CMD="lame" 581 ENC_CMD="lame"
582 ENC_OPTS="--resample 12 -t -m m -h -V 9 -S -B 64 --vbr-new" 582 ENC_OPTS="--resample 12 -t -m m -h -V 9.999 -S -B 64 --vbr-new"
583 else 583 else
584 echo "You need LAME in the system path to build voice files for" 584 echo "You need LAME in the system path to build voice files for"
585 echo "HWCODEC targets." 585 echo "HWCODEC targets."