sound, increase output level a bit

This commit is contained in:
kub 2021-06-03 21:55:17 +02:00
parent cce32a34da
commit a5a230e0d8
2 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@
/* limitter */
#define Limit16(val) \
val -= val >> 2; /* reduce level to avoid clipping */ \
val -= val >> 3; /* reduce level to avoid clipping */ \
if ((short)val != val) val = (val < 0 ? MINOUT : MAXOUT)
int mix_32_to_16l_level;