Home Computer Audio Asylum

Music servers and other computer based digital audio technologies.

Without knowing the code - there shouldn't even be an argument that it COULD sound different.

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:
  VH Audio  


Follow Ups Full Thread
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)

FAQ

Post a Message!

Forgot Password?
Moniker (Username):
Password (Optional):
  Remember my Moniker & Password  (What's this?)    Eat Me
E-Mail (Optional):
Subject:
Message:   (Posts are subject to Content Rules)
Optional Link URL:
Optional Link Title:
Optional Image URL:
Upload Image:
E-mail Replies:  Automagically notify you when someone responds.