diff options
| author | Richard Linden <none@none> | 2010-05-11 17:48:04 -0700 |
|---|---|---|
| committer | Richard Linden <none@none> | 2010-05-11 17:48:04 -0700 |
| commit | 709dd3f862c82e1db56e4a39e236c1d8b546984e (patch) | |
| tree | 106493fbfa955b13d43d2a762ed86026259a4ff3 /indra/newview/llviewermedia.cpp | |
| parent | 45dcce5fdcfe09a19870f44c6667c63b48b10cee (diff) | |
| parent | eb1bf97b1eb32dfe30604a8e82e60a20d1807128 (diff) | |
merge
Diffstat (limited to 'indra/newview/llviewermedia.cpp')
| -rw-r--r-- | indra/newview/llviewermedia.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp index 1f6687bd83..4db05e8a98 100644 --- a/indra/newview/llviewermedia.cpp +++ b/indra/newview/llviewermedia.cpp @@ -1934,13 +1934,13 @@ void LLViewerMediaImpl::updateVolume() } else if (mProximityCamera > gSavedSettings.getF32("MediaRollOffMin")) { - // attenuated_volume = v / ( 1 + (roll_off_rate * (d - min))^2 + // attenuated_volume = 1 / (roll_off_rate * (d - min))^2 // the +1 is there so that for distance 0 the volume stays the same F64 adjusted_distance = mProximityCamera - gSavedSettings.getF32("MediaRollOffMin"); F64 attenuation = gSavedSettings.getF32("MediaRollOffRate") * adjusted_distance; - attenuation = attenuation * attenuation; + attenuation = 1.0 / (attenuation * attenuation); // the attenuation multiplier should never be more than one since that would increase volume - volume = volume * llmin(1.0, 1 /(attenuation + 1)); + volume = volume * llmin(1.0, attenuation); } } |
