I have followed the 'volume control bug'
(http://forums.slimdevices.com/showthread.php?t=17269) plus
revert-to-firmware-15 discussion and hope this will be solved soon.

A recent post has the following:

"Please note that there is a bug relating to latest versions of
firmware that affects the SB volume control. You should patch the SS
code with the suggested patch to avoid any volume control rounding
problems."

I believe the patch is this one:

- 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);
+ }

I also understand that if one uses this patch, firmware 15 is not
needed any more, and anyway it makes sense to have the latest code and
firmware.

Would somebody post simple instructions on how to install the patch for
Windows, Linux and Mac?


-- 
vdorta
------------------------------------------------------------------------
vdorta's Profile: http://forums.slimdevices.com/member.php?userid=1446
View this thread: http://forums.slimdevices.com/showthread.php?t=18369

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

Reply via email to