aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbobo1on1 <bob-nospam-@xbmc.org>2012-11-15 21:34:30 +0100
committerbobo1on1 <bob-nospam-@xbmc.org>2012-11-15 21:34:30 +0100
commitb686618d98f93e3c363f67518988dce5482bde6b (patch)
tree8d7cb24ec00d7c997ec9e2dc61de1e0b0518dbe2
parent38368ea6e50747713f859f2ea9910da24463cfd8 (diff)
added: description of units of volume amplification
-rw-r--r--xbmc/cores/AudioEngine/Interfaces/AEStream.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/xbmc/cores/AudioEngine/Interfaces/AEStream.h b/xbmc/cores/AudioEngine/Interfaces/AEStream.h
index ee82df2a30..b2b8b41223 100644
--- a/xbmc/cores/AudioEngine/Interfaces/AEStream.h
+++ b/xbmc/cores/AudioEngine/Interfaces/AEStream.h
@@ -139,14 +139,14 @@ public:
virtual void SetReplayGain(float factor) = 0;
/**
- * Gets the stream's volume amplification
- * @return The volume amplification factor
+ * Gets the stream's volume amplification in linear units.
+ * @return The volume amplification factor between 1.0 and 1000.0
*/
virtual float GetAmplification() = 0;
/**
- * Sets the stream's volume amplification
- * @param The volume amplification factor
+ * Sets the stream's volume amplification in linear units.
+ * @param The volume amplification factor between 1.0 and 1000.0
*/
virtual void SetAmplification(float amplify) = 0;