Patrick Dixon Wrote: 
> ....Anyway, the latest nightlies have a gain control that works fine -
> no resolution loss above -35dB, so it should sound alright.


If you are refering to this change:

- return int(($floatmult * (1 << 16)) + 0.5);
+ if ($db >= -35 && $db <= 0) {
+ return int($floatmult * (1 << 8) + 0.5) * (1 << 8);
+ }
+ else {
+ return int(($floatmult * (1 << 16)) + 0.5);
+ }

It does not appear to be in the nightlies.  I just looked in both 6.2.1
and 6.5b1.  Is that change the latest thinking on the volume control
losing bits issue?

Regards


-- 
Music Machine
------------------------------------------------------------------------
Music Machine's Profile: http://forums.slimdevices.com/member.php?userid=1486
View this thread: http://forums.slimdevices.com/showthread.php?t=17879

_______________________________________________
audiophiles mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/audiophiles

Reply via email to