From a239c49fd88f5e0b66f64025254c307beea714b9 Mon Sep 17 00:00:00 2001 From: amiconn Date: Sat, 30 May 2009 00:12:24 +0000 Subject: [PATCH] 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 --- tools/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/configure b/tools/configure index 75908fe60..e7cb4943f 100755 --- a/tools/configure +++ b/tools/configure @@ -579,7 +579,7 @@ voiceconfig () { if [ -n "`findtool lame`" ]; then ENCODER="lame" ENC_CMD="lame" - ENC_OPTS="--resample 12 -t -m m -h -V 9 -S -B 64 --vbr-new" + ENC_OPTS="--resample 12 -t -m m -h -V 9.999 -S -B 64 --vbr-new" else echo "You need LAME in the system path to build voice files for" echo "HWCODEC targets." -- 2.11.4.GIT