Import alsa-utils from oldpackages

This commit is contained in:
Ted Hess
2014-07-17 16:52:21 -04:00
parent 18aef4945a
commit 2318e7e21e
2 changed files with 115 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
--- a/alsamixer/volume_mapping.c
+++ b/alsamixer/volume_mapping.c
@@ -114,9 +114,9 @@ static double get_normalized_volume(snd_
if (use_linear_dB_scale(min, max))
return (value - min) / (double)(max - min);
- normalized = exp10((value - max) / 6000.0);
+ normalized = pow(10, (value - max) / 6000.0);
if (min != SND_CTL_TLV_DB_GAIN_MUTE) {
- min_norm = exp10((min - max) / 6000.0);
+ min_norm = pow(10, (min - max) / 6000.0);
normalized = (normalized - min_norm) / (1 - min_norm);
}
@@ -149,7 +149,7 @@ static int set_normalized_volume(snd_mix
}
if (min != SND_CTL_TLV_DB_GAIN_MUTE) {
- min_norm = exp10((min - max) / 6000.0);
+ min_norm = pow(10, (min - max) / 6000.0);
volume = volume * (1 - min_norm) + min_norm;
}
value = lrint_dir(6000.0 * log10(volume), dir) + max;