sox_ng/libdolbyb/Mixers.h
Martin Guy 8b49fcd6af
Import libdolbyb for new effect dolbyb
THe output with --no-dither is identical to that of
the command-line program "dolbyb".
2025-04-20 20:32:59 +02:00

5 lines
195 B
C

/* Mixers.h */
/* Was (I * 18 + S * 15) / 18 */
#define MixersEncode(InSamp, SidSmp) (((InSamp) * 6 + (SidSmp) * 5) / 6)
#define MixersDecode(InSamp, SidSmp) (((InSamp) * 6 - (SidSmp) * 5) / 6)