diff options
author | Lennart Poettering <lennart@poettering.net> | 2004-09-01 12:49:39 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2004-09-01 12:49:39 +0000 |
commit | 9939fba7f5d2e2f39a7156e90f171aa01176f313 (patch) | |
tree | 0fd242ddadc2221ec726356f8b15fc65600be722 | |
parent | 9c4fd2a2c75b958c22442d2b83e75021bd096be5 (diff) |
add \since to dB functions
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@167 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r-- | polyp/sample.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/polyp/sample.h b/polyp/sample.h index ca462071..0a6c306e 100644 --- a/polyp/sample.h +++ b/polyp/sample.h @@ -102,10 +102,12 @@ typedef uint32_t pa_volume_t; /** Multiply two volumes specifications, return the result. This uses PA_VOLUME_NORM as neutral element of multiplication. */ pa_volume_t pa_volume_multiply(pa_volume_t a, pa_volume_t b); -/** Convert volume from decibel to linear level */ +/** Convert volume from decibel to linear level + * \since 0.4 */ pa_volume_t pa_volume_from_dB(double f); -/** Convert volume from linear level to decibel */ +/** Convert volume from linear level to decibel + * \since 0.4 */ double pa_volume_to_dB(pa_volume_t v); PA_C_DECL_END |