In Reply to: RE: Added a DAC to the SB Touch posted by soundchekk on April 5, 2011 at 01:17:15:
Let's look at these 2 bogus methods - does anyone seriously suggest that work performed by CPU is the same for both functions, when SliderPosition = 100?
I'm not saying that #1 is how it's done in reality by Logitech - but clearly there's at least theoretical possibility.
Sub CalculateVolume(ByRef Signal As Decimal, ByVal SliderPosition As Integer)
Signal = (Signal * SliderPosition) / 100
End Sub
Sub CalculateVolume_WithBypass(ByRef Signal As Decimal, ByVal SliderPosition As Integer)
If SliderPosition < 100 Then
Signal = (Signal * SliderPosition) / 100
End If
End Sub
This post is made possible by the generous support of people like you and our sponsors:
Follow Ups
- Without knowing the code - there shouldn't even be an argument that it COULD sound different. - carcass93 14:06:37 04/05/11 (0)