Adjust emphasis gains

This commit is contained in:
Geoffrey Merck 2020-05-31 11:43:35 +02:00
parent bd1aa20803
commit af6b7d79da

View file

@ -27,7 +27,7 @@
#define SWAP_BYTES_16(a) (((a >> 8) & 0x00FFU) | ((a << 8) & 0xFF00U))
const float DEEMPHASIS_GAIN_DB = 0.0F;
const float PREEMPHASIS_GAIN_DB = 0.0F;
const float PREEMPHASIS_GAIN_DB = 13.0F;
const float FILTER_GAIN_DB = 0.0F;
const unsigned int FM_MASK = 0x00000FFFU;