It looks like Takehiro's message was caught when the email list
server crashed.  This fix will be in 3.26.  

> X-Authentication-Warning: cs.csoft.net: $s=gate4.fyrplus.se doesn't match 
>$[EMAIL PROTECTED]
> X-Authentication-Warning: gate4.fyrplus.se: majordom set sender to 
>[EMAIL PROTECTED] using -f
> From: Takehiro Tominaga <[EMAIL PROTECTED]>
> Content-Type: Text/Plain; charset=us-ascii
> Date: Sun, 18 Jul 1999 21:59:59 +0900
> X-Dispatcher: imput version 980905(IM100)
> Sender: [EMAIL PROTECTED]
> Precedence: bulk
> Reply-To: [EMAIL PROTECTED]
> X-UIDL: iHGe9'o_d9UT9e9=<U!!
> 
> I hacked lame 3.13 little bit, and I found a bad algorithm is used in
> loop.c, line 718-723.
> 
>     /* dont reduce side channel below 125 bits */
>     if (targ_bits[1]-targ_bits[1]*fac > 125) {
>       targ_bits[0] += targ_bits[1]*fac;
>       targ_bits[1] -= targ_bits[1]*fac;
>     }
> 
> I think it should be
> 
>     /* dont reduce side channel below 125 bits */
>     if (targ_bits[1]-targ_bits[1]*fac > 125) {
>       targ_bits[0] += targ_bits[1]*fac;
>       targ_bits[1] -= targ_bits[1]*fac;
>     } else {
>       targ_bits[0] += targ_bits[1] - 125;
>       targ_bits[1] = 125;
>     }
> 
> P.S.
> I hacked the LAME and sped up about 10-20%. I'll send the patch after
> I clean up and test the patch.
> 

Any progress on this speed up?  

Mark









--
MP3 ENCODER mailing list ( http://geek.rcc.se/mp3encoder/ )

Reply via email to